vscode hbuilder 自定义设置html代码块vue代码块
相信大家在学习vue的时候 新建一个html页面很痛苦 需要手打模板 多麻烦呀 咱们直接设置代码块 复制直接用{"vue html": {"prefix": "vh","body": ["<!DOCTYPE html>","<html>","\t<head>","\t<meta ...
·
相信大家在学习vue的时候 新建一个html页面很痛苦 需要手打模板 多麻烦呀 咱们直接设置代码块 复制直接用
{
"vue html": {
"prefix": "vh",
"body": [
"<!DOCTYPE html>",
"<html>",
"\t<head>",
"\t<meta charset=\"utf-8\">",
"\t<title>vue html demo</title>",
"\t<script src=\"./lib/vue-2.4.0.js\"></script>",
"\t</head>",
"\t<body>",
"\t\t<div id=\"app\">",
"\t\t</div>",
"\t\t<script>",
"\t\t\tnew Vue({",
"\t\t\t\tel: '#app',",
"\t\t\t\tdata: {\n",
"\t\t\t\t},",
"\t\t\t\tmethods:{\n",
"\t\t\t\t}",
"\t\t\t})",
"\t\t</script>",
"\t</body>",
"</html>"
],
"description": "The full sample code - hello world."
}
}
代码图
键盘敲击vh即刻出现
更多推荐
已为社区贡献5条内容
所有评论(0)