在用vscode的时候已经安装好 HTML Snippets 插件但是自动补全代码的功能还是没有生效,需要在配置文件里面添加以下代码
"files.associations": {
"*.ejs":"html",
"*.js":"html",
"*.vue":"html"
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages":{
"vue-html":"html",
"vue":"html"
}
具体的添加位置在文件-首选项-设置(File-Preferences-Settings)中,搜索files.associations,然后点击在setting.json中编辑。