nest-admin-main/.vscode/vue3.3.code-snippets
2024-09-11 16:49:47 +08:00

21 lines
448 B
Plaintext

{
"Vue3.3+defineOptions快速生成模板": {
"scope": "vue",
"prefix": "Vue3.3+",
"body": [
"<script setup lang='ts'>",
"defineOptions({",
"\tname: '${TM_FILENAME_BASE}'",
"})",
"</script>\n",
"<template>",
"\t<div>test</div>",
"</template>\n",
"<style lang='less' scoped>\n",
"</style>",
"$2"
],
"description": "Vue3.3+defineOptions快速生成模板"
}
}