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

版权声明:本文为博主原创文章,转载请附上博文链接! https://blog.csdn.net/qq_37802511/article/details/84536299

文件 —> 首选项 —> 用户代码片段,打开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":[
			"<!DOCTYPE html>",
      "<html lang=\"zh-CN\">",
      "<head>",
      "\t<meta charset=\"UTF-8\">",
      "\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,minimal-ui:ios\">",
      "\t<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
			"\t<title>Document</title>",
			"\t<link rel=\"stylesheet\" href=\"../lib/node_modules/bootstrap/dist/css/bootstrap.css\">",
      "\t<script src=\"../lib/vue-2.4.0.js\"></script>",
      "\t<script src=\"../lib/vue-resource.js\"></script>",
      "\t<link rel=\"stylesheet\" href=\"$1\">",
      "\t<script src=\"$2\"></script>",
      "</head>",
			"<body>",
			"<div id=\"app\">",
      "",
      "</div>",
			"",
      "<script>",
      " var vm = new Vue({",
        "  el:'#app',",
        "  data:{},",
        "  methods:{}",
      " }) ;",
      " </script>",
      "</body>",
      "</html>"
    ],
    "description": "my vue template"
  }
}

在这里插入图片描述
在html 页面中只需,输入h就可以出现上述设定好的代码片段以供使用。
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_37802511/article/details/84536299