vscode中设置vue代码片段
Posted susu-yee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode中设置vue代码片段相关的知识,希望对你有一定的参考价值。
1、点击【文件】---【首选项】---【用户代码片段】
2、新建或修改vue.json
3、将下列代码粘贴上去(可根据自己需要添加/删除)
{ "Print to console": { "prefix": "vue", "body": [ "<template>", " <div> ", " </div>", "</template> ", "<script>", "export default {", " data() {", " return { ", " };", " },", " created() { ", " },", " mounted() { ", " },", " methods: { ", " }", "};", "</script> ", "<style scoped lang="${1:less}"> ", "</style> ", ], "description": "Create vue template" } }
以上是关于vscode中设置vue代码片段的主要内容,如果未能解决你的问题,请参考以下文章