index.ts 714 B

1234567891011121314151617
  1. import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
  2. export { default as BasicTable } from './src/BasicTable.vue';
  3. export { default as TableAction } from './src/components/TableAction.vue';
  4. export { default as EditTableHeaderIcon } from './src/components/EditTableHeaderIcon.vue';
  5. export const TableImg = createAsyncComponent(() => import('./src/components/TableImg.vue'));
  6. export * from './src/types/table';
  7. export * from './src/types/pagination';
  8. export * from './src/types/tableAction';
  9. export { useTable } from './src/hooks/useTable';
  10. export type { FormSchema, FormProps } from '/@/components/Form/src/types/form';
  11. export type { EditRecordRow } from './src/components/editable';