webStorm vue模板

作者: 张xiao蛋 | 来源:发表于2018-10-18 16:35 被阅读0次

打开 设置==>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>

相关文章

网友评论

    本文标题:webStorm vue模板

    本文链接:https://www.haomeiwen.com/subject/fidszftx.html