VS code中设置html5 代码片段(vue)

文件 —> 首选项 —> 用户代码片段,打开html.json(HTML)
说明:每一行都要用双引号"引起来,并且用逗号,分隔 ,每个需要显示出来的双引号都要用\斜杠转义
个人使用如下设置

{
	// Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	// "Print to console": {
	// 	"prefix": "log",
	// 	"body": [
	// 		"console.log('$1');",
	// 		"$2"
	// 	],
	// 	"description": "Log output to console"
	// }
	"vue-template":{
		"prefix":"h",
		"body":[
			"",
      "",
      "",
      "\t",
      "\t",
      "\t",
			"\tDocument",
			"\t",
      "\t",
      "\t",
      "\t",
      "\t",
      "",
			"",
			"
", "", "
", "", "", "", "" ], "description": "my vue template" } }

VS code中设置html5 代码片段(vue)_第1张图片
在html 页面中只需,输入h就可以出现上述设定好的代码片段以供使用。
VS code中设置html5 代码片段(vue)_第2张图片
VS code中设置html5 代码片段(vue)_第3张图片

你可能感兴趣的:(工具设置)