* feat:新增vscode中的vue3.2.setup-snippets代码片段文件

* feat:新增vscode中的vue3.2.setup-snippets代码片段文件
This commit is contained in:
huohuoit 2021-10-28 11:43:34 +08:00 committed by GitHub
parent 25c37bb2fa
commit 769e684c61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.vscode/vue3.2.setup-snippets vendored Normal file
View File

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