您的位置:首页 > Web前端 > Vue.js

vscode一键生成Vue模板

2019-03-26 15:55 435 查看
[code]{
"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"
}
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: