vscode----vue模板--用户代码片段--快捷

vue.json

{
	"Print to console": {
		"prefix": "vue",
		"body": [
			"<template>",
			"  <div>$0</div>",
			"</template>",
			"",
			"<script>",
			"export default {",
			"  data () {",
			"    return {",
			"    };",
			"  },",
			"",
			"  components: {},",
			"",
			"  mounted () {},",
			"",
			"  destroyed () {},",
			"",
			"  methods: {}",
			"}",
			"",
			"</script>",
			"<style lang='less' scoped>",
			"</style>"
		],
		"description": "Log output to console"
	}
}

 

posted @ 2021-02-14 11:23  小白咚  阅读(419)  评论(0编辑  收藏  举报