ibizbookpanel-calendar.vue 442 字节
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 IBIZBOOKPANELBase from './ibizbookpanel-calendar-base.vue';

import layout_item1layoutpanel from '@widgets/ibizbook/auto1-panel/auto1-panel.vue';
 
// 基于 @CONTROL/@MACRO/CONTROL/CONTROL.vue.ftl 生成
@Component({
    components: {
        layout_item1layoutpanel,
         
    }
})
export default class IBIZBOOKPANEL extends IBIZBOOKPANELBase {

}
</script>