ctrl-chart-portlet.vue 422 字节
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 IBIZAPPCTRLCtrlChartBase from './ctrl-chart-portlet-base.vue';
import view_db_sysportlet3_chart from '@widgets/ibizappctrl/ctrl-chart-chart/ctrl-chart-chart.vue';

 
@Component({
    components: {
        view_db_sysportlet3_chart, 
         
    }
})
export default class IBIZAPPCTRLCtrlChart extends IBIZAPPCTRLCtrlChartBase {

}
</script>