VScode Vue配置

616 阅读1分钟

首先在应用商店下载Vuehelper 和 htmlSnippets两个插件
然后依次打开“文件 --> 首选项 --> 设置”,就会看到settings.json文件了 把这段代码复制到上面去

   "window.zoomLevel": 0,
   "terminal.integrated.rendererType": "dom",
   "editor.suggest.snippetsPreventQuickSuggestions": false,
   "files.associations": {
       "*.vue": "vue"
   },
   "workbench.colorTheme": "Visual Studio Light",
   "emmet.syntaxProfiles":{
       "vue-html": "html",
       "vue": "html"
   },
   "files.associations": {
       "*.vue": "html"
   }   
   }