解决VSCode引号内输入属性没有提示
1、安装插件HTML Snippets2、打开VSCode的settings.json,增加以下内容:"editor.quickSuggestions": {"other": true,"comments": true,"strings": true},"editor.suggest.snippetsPreventQuickSuggestions": false,"files.associatio
·
1、安装插件HTML Snippets
2、打开VSCode的设置里打开settings.json,增加以下内容:
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.suggest.snippetsPreventQuickSuggestions": false,
"files.associations": {
"*.vue":"html"
},
3、保存。
更多推荐
已为社区贡献1条内容
所有评论(0)