VS code中设置html5 代码片段(vue)
VS code中设置html5 代码片段(vue)文件 —> 首选项 —> 用户代码片段,打开html.json(HTML)说明:每一行都要用双引号"引起来,并且用逗号,分隔 ,每个需要显示出来的双引号都要用\斜杠转义个人使用如下设置{// Place your snippets for html here. E
·
文件 —> 首选项 —> 用户代码片段,打开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
就可以出现上述设定好的代码片段以供使用。
更多推荐
已为社区贡献1条内容
所有评论(0)