app-default-kanban.tsx 464 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { Component } from 'vue-property-decorator';
import draggable from "vuedraggable";
import { AppKanbanBase } from '../app-common-control/app-kanban-base';
import { VueLifeCycleProcessing } from '../../../decorators';

/**
 * 实体看板部件
 *
 * @export
 * @class AppDefaultKanban
 * @extends {AppKanbanBase}
 */
@Component({    
    components: {
        draggable,
    }})
@VueLifeCycleProcessing()
export class AppDefaultKanban extends AppKanbanBase{}