vscode创建html模板

vscode创建代码模板

首先打开文件—首选项—用户片段
vscode创建html模板_第1张图片
然后找到html.json
vscode创建html模板_第2张图片
接着对html.json写入加的模板
vscode创建html模板_第3张图片

{
	"h5 template": {        //无关紧要
		"prefix": "vue",  //触发模板的关键词
		"body": [                       //每一行都要""
	"",     //结尾需加上  ,
	"",     //注意""之间需要\转义字符
	"",       
    "\t",           //\n意味着换行,\t是制表符
    "\tTitle",
	"",
	"",
	"\t
", "\t\t

{ {message}}

", "\t
", "", "", "", "" ], "description": "init vue template"//对模板的描述 } }

保存之后新建html输入触发模板的关键词回车就完成了
vscode创建html模板_第4张图片

你可能感兴趣的:(vscode创建html模板)