This commit is contained in:
qianguyihao
2018-05-02 21:31:28 +08:00
parent c2f94754ab
commit fdec976206
7 changed files with 84 additions and 10 deletions

View File

@@ -106,7 +106,40 @@ Sass 文件格式化。
- <https://github.com/varHarrie/varharrie.github.io/issues/10>
### vscode-fileheader添加顶部注释模板
1安装插件vscode -fileheader并重启。
2在首选项-》设置-》中搜索fileheader找到头部模板修改。
默认的快捷键是「Ctrl + option + I」。
参考链接:
- <https://www.zhihu.com/question/62385647>
### Vue 相关的插件
- veturvue 文件的基本语法高亮
安装完 vetur 后还需要加上这样一段配置下:
```
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
}
```
参考链接:
- <https://www.clarencep.com/2017/03/18/edit-vue-file-via-vscode/>
- <https://github.com/varHarrie/varharrie.github.io/issues/10>