码迷,mamicode.com
首页 > 其他好文 > 详细

VSCode 自定义Vue snippets, 快速生成Vue模板

时间:2020-07-30 01:09:52      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ace   pre   alt   rap   nec   def   method   create   cte   

命令行

Ctrl+Shift+P
# 选择 Configure User Snippets
# 选择 Vue.json

原始的Vue.json

{
	// Place your snippets for vue 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.json

  • prefix: vue
  • body修改为希望的内容
{
	// Example:
	"Print to console": {
		"prefix": "vue",
		"body": [
			"<template>",
			"  <div class=\"wrapper\">$0</div>",
			"</template>",
			"",
			"<script>",
			"export default {",
			"  components: {},",
			"  props: {},",
			"  data() {",
			"    return {",
			"    };",
			"  },",
			"  watch: {},",
			"  computed: {},",
			"  methods: {},",
			"  created() {},",
			"  mounted() {}",
			"};",
			"</script>",
			"<style lang=\"scss\" scoped>",
			".wrapper{}",
			"</style>"
		],
		"description": "A vue file template"
	}
}

Try

  • 新建一个.vue文件,然后输入vue,然后回车
    技术图片
<template>
  <div class="wrapper"></div>
</template>

<script>
export default {
  components: {},
  props: {},
  data() {
    return {
    };
  },
  watch: {},
  computed: {},
  methods: {},
  created() { },
  mounted() { }
};
</script>
<style lang="scss" scoped>
.wrapper {
}
</style>

VSCode 自定义Vue snippets, 快速生成Vue模板

标签:ace   pre   alt   rap   nec   def   method   create   cte   

原文地址:https://www.cnblogs.com/leslie1943/p/13401186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!