feat(init): 项目初始化构建
Some checks failed
Lint Code / Lint Code (push) Failing after 35s

This commit is contained in:
2026-03-27 16:50:27 +08:00
commit 2b62486364
637 changed files with 108813 additions and 0 deletions

22
.vscode/vue3.0.code-snippets vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"Vue3.0快速生成模板": {
"scope": "vue",
"prefix": "Vue3.0",
"body": [
"<template>",
"\t<div>test</div>",
"</template>\n",
"<script lang='ts'>",
"export default {",
"\tsetup() {",
"\t\treturn {}",
"\t}",
"}",
"</script>\n",
"<style lang='scss' scoped>\n",
"</style>",
"$2"
],
"description": "Vue3.0"
}
}