欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vs code工具中设置html5 快速生成vue模板

程序员文章站 2022-07-05 20:01:01
...

最近开始学习Vue,使用vscode新建个模板

1.编辑html.json文件

vs code工具中设置html5 快速生成vue模板
输入html,选择html.json文件
vs code工具中设置html5 快速生成vue模板

2.替换需要自动生成的代码

{
	"html5-vue": {
		"prefix": "vh", // 对应的是使用这个模板的快捷键
		"body": [
		 "<!DOCTYPE html>",
		 "<html lang=\"en\">",
		 "<head>",
		 "\t<meta charset=\"UTF-8\">",
		 "\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
		 "\t<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
		 "\t<title>Document</title>",
		 "\t<script src=\"../lib/vue.js\"></script>",     
		 "</head>\n",
		 "<body>",
		 "\t<div id =\"app\"> </div>\n",
		 "\t<script>",
		 "\t //创建Vue实例,得到 ViewModel",
		 "\t var vm = new Vue({",
		 "\t\tel: '#app',",
		 "\t\tdata: {},",
		 "\t\tmethods: {}",
		 "\t });",
		 "\t</script>",
		 "</body>\n",
		 "</html>"
		],
		"description": "HT-H5" // 模板的描述
	 }
}

3.在新建的html中输入vh回车即可

vs code工具中设置html5 快速生成vue模板

相关标签: vue html5