vscode安装的插件

272 阅读1分钟

* Vue.js devtools

### VS Code插件

自动补全标签
* Auto Close Tag
* Auto Complete Tag
* Auto Rename Tag
"editor.wordWrap": "on" //自动换行

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

路径自动补全
* Path Intellisense

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

### 玩转Vs code

* [Vs Code奇淫技巧](https://github.com/Microsoft/vscode-tips-and-tricks)

* Vs Code设置

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

```json
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
}