app-style2-ganttview.tsx 418 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { Prop, Emit, Component, Watch } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '../../../decorators';
import { AppGanttViewBase } from '../app-common-view/app-ganttview-base';

/**
 * 应用实体甘特视图
 *
 * @export
 * @class AppStyle2GanttView
 * @extends {AppGanttViewBase}
 */
@Component({})
@VueLifeCycleProcessing()
export class AppStyle2GanttView extends AppGanttViewBase {}