oa_front/.vscode/vue3.3.code-snippets

21 lines
450 B
Plaintext

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