* 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"
}