vben
2020-12-31 9c2f3f30bbd8abcccc4f256183ed7794da7fcda2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
 
export { default as BasicTable } from './src/BasicTable.vue';
export { default as TableAction } from './src/components/TableAction.vue';
// export { default as TableImg } from './src/components/TableImg.vue';
export { default as EditTableHeaderIcon } from './src/components/EditTableHeaderIcon.vue';
 
export const TableImg = createAsyncComponent(() => import('./src/components/TableImg.vue'));
// export const TableAction = createAsyncComponent(() => import('./src/components/TableAction.vue'));
 
export * from './src/types/table';
export * from './src/types/pagination';
export * from './src/types/tableAction';
 
export { useTable } from './src/hooks/useTable';
 
export type { FormSchema, FormProps } from '/@/components/Form/src/types/form';
 
export type { EditRecordRow } from './src/components/editable';