app-view-total-portlet.vue 435 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBIZVIEWMESSAppViewTotalBase from './app-view-total-portlet-base.vue';
import view_db_sysportlet2_list from '@widgets/ibizviewmess/view-total-list/view-total-list.vue';

 
@Component({
    components: {
        view_db_sysportlet2_list, 
         
    }
})
export default class IBIZVIEWMESSAppViewTotal extends IBIZVIEWMESSAppViewTotalBase {

}
</script>