美文网首页
vue的ts的写法

vue的ts的写法

作者: 尘埃里的玄 | 来源:发表于2023-09-04 19:27 被阅读0次
    <script lang="ts">
    
    import {Component, Vue} from "vue-property-decorator";
    
    
    @Component({
      props: [],
      components: {},
    })
    export default class dynamicReportTable extends Vue {
    
      created() {
    
      }
    
      mounted() {
    
      }
    
    
    }
    </script>
    

    相关文章

      网友评论

          本文标题:vue的ts的写法

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