vscode之快速生成vue模板
Posted cinderellastory
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode之快速生成vue模板相关的知识,希望对你有一定的参考价值。
文件-首选项-用户代码片段-搜索“vue”点击进入vue.json
复制这个片段
1 { 2 "Vue component": { 3 "prefix": "vue", 4 "body": [ 5 "<template>", 6 " $1", 7 "</template>", 8 "<script>", 9 "export default {", 10 " ", 11 "}", 12 "</script>", 13 "<style scoped>", 14 "</style>", 15 "" 16 ] 17 } 18 }
重启vscode
输入vue即可
以上是关于vscode之快速生成vue模板的主要内容,如果未能解决你的问题,请参考以下文章