vscode一键生成Vue模板
{
"Print to console": {
"prefix": "vue",
"body": [
"<!-- -->",
"<template>",
" <div></div>",
"</template>",
"<script>",
"export default {",
" name: '',",
" components: {",
" ",
" },",
" data() {",
" return {",
" ",
" }",
" },",
" methods: {",
" ",
" },",
" computed: {",
" ",
" },",
" watch: {",
" ",
" }",
"}",
"</script>",
"<style lang=\"less\" scoped>",
" ",
"</style>"
],
"description": "Log output to console"
}
}