新建代码 vue.json模板
{
"Print to console": {
"prefix": "!v",
"body": [
"<template>",
" <div>",
"$0",
" </div>",
"</template>",
"",
"<script>",
"",
" export default {",
" name:'',",
" props:[''],",
" data () {",
" return {",
"",
" };",
" },",
"",
" components: { },",
"",
" methods: { },",
"",
" created(){ }",
"",
" }",
"",
"",
"</script>",
"",
"",
"",
"<style scoped>",
"",
"",
"",
"</style>"
],
"description": "Log output to console"
}
}
使用前缀 !v 一键创建vue模板
标签:code,console,vue,代码,vs,模板 From: https://www.cnblogs.com/Hello233/p/16784131.html