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

VSCode 使用代码片段创建 Vue 模板

程序员文章站 2022-05-30 20:37:53
...

 使用代码片段可以生成我们所需要的模板,然后通过快捷键直接生成所需代码,方便快捷!

示例:

(一)

VSCode 使用代码片段创建 Vue 模板

 (二)

VSCode 使用代码片段创建 Vue 模板

VSCode 使用代码片段创建 Vue 模板 

(三)

VSCode 使用代码片段创建 Vue 模板 

把模板内容替换成我们所需的:

{
	"vue htm": {
		"scope": "html",
		"prefix": "vuehtml",
		"body": [
			"<!DOCTYPE html>",
			"<html lang=\"en\">",
			"",
			"<head>",
			"    <meta charset=\"UTF-8\">",
			"    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
			"    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
			"    <title>Document</title>",
			"</head>",
			"",
			"<body>",
			"    <div id=\"app\">",
			"",
			"    </div>",
			"    <script src=\../"vue.min.js\"></script>",
			"    <script>",
			"        new Vue({",
			"            el: '#app',",
			"            data: {",
			"                $1",
			"            }",
			"        })",
			"    </script>",
			"</body>",
			"",
			"</html>",
		],
		"description": "my vue template in html"
	}
}

 VSCode 使用代码片段创建 Vue 模板

千万注意保存,还有js文件位置如果不对,自己改动下。

然后就可以通过快捷键直接使用了 :

VSCode 使用代码片段创建 Vue 模板

VSCode 使用代码片段创建 Vue 模板