9 lines
358 B
TypeScript
9 lines
358 B
TypeScript
|
|
import { withInstall } from '@jeesite/core/utils';
|
||
|
|
import impExcel from './src/ImportExcel.vue';
|
||
|
|
import expExcelModal from './src/ExportExcelModal.vue';
|
||
|
|
|
||
|
|
export const ImpExcel = withInstall(impExcel);
|
||
|
|
export const ExpExcelModal = withInstall(expExcelModal);
|
||
|
|
export * from './src/typing';
|
||
|
|
export { jsonToSheetXlsx, aoaToSheetXlsx } from './src/Export2Excel';
|