当前位置: 移动技术网 > IT编程>脚本编程>vue.js > vue以及vue.html组件的代码片段

vue以及vue.html组件的代码片段

2020年07月17日  | 移动技术网IT编程  | 我要评论
{
    "Print to console": {
        "prefix": "vue",
        "body": [
            "<template>",
            "    <div>\n",
            "    </div>",
            "</template>\n",
            "<script>",
            "export default {",
            "    props: {\n",
            "    },",
            "    data() {",
            "        return {\n",
            "        };",
            "    },",
            "    computed: {\n",
            "    },",
            "    created() {\n",
            "    },",
            "    mounted() {\n",
            "    },",
            "    watch: {\n",
            "    },",
            "    methods: {\n",
            "    },",
            "    components: {\n",
            "    },",
            "};",
            "</script>\n",
            "<style scoped lang=\"${1:scss}\">\n",
            "</style>\n",
        ],
        "description": "Create vue template"
    }
}
//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"
  }
}

 

本文地址:https://blog.csdn.net/Lovelyclown/article/details/107376939

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网