# 开发工具

# 浏览器插件

  • Vue.js devtools

# VS Code插件

自动补全标签

  • Auto Close Tag
  • Auto Complete Tag
  • Auto Rename Tag

开启一个服务器浏览HTML网页,第一次使用需要Ctrl + Shift + p输入 live server选择open

  • Live Server

路径自动补全

  • Path Intellisense

vue语法高亮和自动补全代码

  • Vetur
  • VueHelper
  • Vue.js Extension Pack

# 玩转Vs code

文件--->首选项--->设置,然后添加如下代码:

  "emmet.syntaxProfiles": {
      "vue-html": "html",
      "vue": "html"
  },
  "emmet.includeLanguages": {
      "vue-html": "html",
      "vue": "html"
  }
Last Updated: 6/10/2019, 2:38:24 PM