vscode中配置用户代码片段

91 阅读1分钟

image.png

搜索vue 或者vue.json

image.png

把下面的代码复制到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"
	// }

	"Print to v2": {
		"prefix": "vue2",
		"body": [
			"<template>",
			"  <div>\n",
			"  </div>",
			"</template>",
			"<script>",
			"export default {",
			"  name: '文件名',",
			"  data() {",
			"    return {\n",
			"    }",
			"  },",
			"  mounted(){\n",
			"  },",
			"  computed:{\n",
			"  },",
			"  methods:{\n",
			"  },",
			"}",
			"</script>",
			"<style scoped>\n",
			"</style>",
			"$2"
		],
		"description": "Log output to console"
	},
	"Print to v3": {
		"prefix": "vue3",
		"body": [
			"<template>",
			"  <div></div>",
			"</template>",
			"<script>",
			"export default {",
			"  components: {\n",
			"  },",
			"  props: {\n",
			"  },",
			"  setup(props, context) {\n",
			"  }",
			"}",
			"</script>",
			"<style scoped>\n",
			"</style>",
		],
		"description": "Log output to console"
	},
	"Print to vue3Setup": {
		"prefix": "vue3Setup",
		"body": [
			"<template>",
			"  <div></div>",
			"</template>",
			"<script setup lang='ts'>\n",
			"</script>",
			"<style scoped>\n",
			"</style>",
		],
		"description": "Log output to console"
	}
	
}

新建一个空的.vue文件,然后输入vue,就可以进行选择,然后创建模板了

image.png