fix: vscode code-snippets

This commit is contained in:
xiaoxian521
2022-01-18 16:59:35 +08:00
parent c472772c54
commit b8ada350a9
3 changed files with 1 additions and 1 deletions

17
.vscode/vue3.2.code-snippets vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"Vue3.2+快速生成模板": {
"prefix": "Vue3.2+",
"body": [
"<script setup lang='ts'>",
"</script>\n",
"<template>",
"\t<div>\n",
"\t</div>",
"</template>\n",
"<style scoped>\n",
"</style>",
"$2"
],
"description": "Vue3.2+"
}
}