文件>首选项>代码片段
新建代码片段:
1.新建一个vue.json 的文件保存到本地。
2.打开vue.json这个文件
3.粘贴下面代码
4.选择vue回车。
{
"Print to console": {
"prefix": "vue",
"body": [
"<template>",
" <div>\n",
" </div>",
"</template>",
"<script>",
"export default {",
" data() {",
" return {",
" }",
" },",
" computed:{",
" },",
" methods:{",
" }",
"}",
"</script>\n",
"<style scoped lang=\"scss\">",
"</style>",
"$2"
],
"description": "Log output to console"
}
}