美文网首页
WebStorm 添加vue模板

WebStorm 添加vue模板

作者: wh17292 | 来源:发表于2020-06-10 15:17 被阅读0次

/**

  • @author wh17292
  • @date 2020年06月10日
  • @Description 描述
  • @router 路由
  • @Html 打包的页面
    */
/**
* @author: wh17292
* @date: ${YEAR}年${MONTH}月${DAY}日
* @Description: ${COMPONENT_NAME}的描述
* @router: /${COMPONENT_NAME}
* @Html: ${COMPONENT_NAME}.html
*/

<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>

添加vue模板.png

相关文章

网友评论

      本文标题:WebStorm 添加vue模板

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