vue-pure-admin2/.vscode/vue3.2.code-snippets

18 lines
328 B
Plaintext
Raw Normal View History

2021-12-29 11:21:59 +08:00
{
"Vue3.2+快速生成模板": {
2023-05-20 21:25:54 +08:00
"scope": "vue",
2021-12-29 11:21:59 +08:00
"prefix": "Vue3.2+",
"body": [
"<script setup lang='ts'>",
"</script>\n",
"<template>",
2023-05-20 21:25:54 +08:00
"\t<div>test</div>",
2021-12-29 11:21:59 +08:00
"</template>\n",
2023-05-20 21:25:54 +08:00
"<style lang='scss' scoped>\n",
2021-12-29 11:21:59 +08:00
"</style>",
"$2"
],
"description": "Vue3.2+"
}
}