Web 前端开发 程序员

webStorm vue模板

2018-10-18  本文已影响0人  张xiao蛋

打开 设置==>file and code templates如图


222222.png
<comment>
    # 组件注释
</comment>
<template>
<div class="${COMPONENT_NAME}">

</div>
</template>

<script>
export default {
  name: '${COMPONENT_NAME}',
  components: {
  },
  data () {
    return {
    }
  },
  props: {
  },
  watch: {
  },
  methods: {
  },
  computed: {
  },
  created () {
  },
  mounted () {
  },
  destroyed () {
  }
}
</script>

<style lang="scss" scoped>
</style>
上一篇 下一篇

猜你喜欢

热点阅读