app-default-gantt.tsx 531 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import { AppGanttBase } from '../app-common-control/app-gantt-base';
import { Component } from 'vue-property-decorator';
// import GanttElastic from "ibiz-gantt-elastic/src/GanttElastic.vue";
import './app-default-gantt.less';
import { VueLifeCycleProcessing } from '../../../decorators';


/**
 * 甘特部件基类
 *
 * @export
 * @class AppDefaultGantt
 * @extends {AppGanttBase}
 */
@Component({
    components: {
        // GanttElastic,
    }
})
@VueLifeCycleProcessing()
export class AppDefaultGantt extends AppGanttBase {}