listpanel-list.vue 419 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import ListpanelBase from './listpanel-list-base.vue';

import layout_list_itempanel from '@widgets/ibizbook/listpanel-panel/listpanel-panel.vue';
 
// 基于 @CONTROL/列表/CONTROL.vue.ftl 生成

@Component({
    components: {
        layout_list_itempanel,
         
    }
})
export default class Listpanel extends ListpanelBase {

}
</script>