has-panel-kan-ban-kanban.vue 412 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import HasPanelKanBanBase from './has-panel-kan-ban-kanban-base.vue';

import layout_itemlayoutpanel from '@widgets/ibizbook/has-panel-kan-ban-panel/has-panel-kan-ban-panel.vue';
 
@Component({
    components: {
        layout_itemlayoutpanel,
         
    }
})
export default class HasPanelKanBan extends HasPanelKanBanBase {

}
</script>