当前位置:主页 > 网页前端 > vue >

vscode vue 文件模板的配置方法

时间:2021-01-26 15:23:52 | 栏目:vue | 点击:

1. 安装VueHelper插件

在这里插入图片描述

2. 寻找 vue.json

按顺序点击vscode的:

3. 填写模板内容

直接复制一下内容到 vue.json

{
 "Print to console": {
  "prefix": "vue",
  "body": [
   "<template>",
   " <div>\n",
   " </div>",
   "</template>\n",
   "<script>",
   " export default {",
   "  name: '',",
   "  data () {",
   "   return {\n",
   "   }",
   "  },",
   "  components: {\n",
   "  }",
   " }",
   "</script>\n",
   "<style scoped>\n",
   " ",
   "</style>",
   "$2"
  ],
  "description": "Log output to console"
 }
}

4. 重启vscode

5. 测试

总结

您可能感兴趣的文章:

相关文章