解决 vue 文件的自动补全问题

1、在插件市场搜索安装 HTML Snippets 插件
image.png

2、点击 文件-首选项-设置,然后根据以下截图进行操作
image.png

3、setting.json中加入以下代码

  1. //注意是以对象的形式插入,和原有的并列
  2. "files.associations":{
  3. "*.vue":"html"
  4. }
  5. //示例 完整参考
  6. "files.associations": {
  7. "*.vue": "vue",
  8. "*.cjson": "jsonc",
  9. "*.wxss": "css",
  10. "*.wxs": "javascript",
  11. "*.styl": "stylus",
  12. "*.vue":"html"
  13. },