vscode vue文件,class没有用户代码片段提示

	"editor.quickSuggestions": {
		"strings": true
	},
	// 这段代码对应的作用时提示html标签
	"emmet.syntaxProfiles": {
		"vue-html": "html",
		"vue": "html"
	},
	// 这段代码对应的作用时提示html标签
	"emmet.includeLanguages": {
		"vue": "html",
		"vue-html": "html",
		"wxml": "html"
	},
	// 这段代码对应的作用是提示css
	"files.associations": {
		"*.vue": "vue"
	},

添加以上配置,其中。
"editor.quickSuggestions": { "strings": true },
最为关键

你可能感兴趣的:(vscode,vue.js,ide)