vue-vben-admin/src/components/VxeTable/index.ts

14 lines
487 B
TypeScript
Raw Normal View History

import { withInstall } from '@/utils';
2023-01-30 14:48:04 +08:00
import vxeBasicTable from './src/VxeBasicTable';
import { VxeUI } from 'vxe-table';
2023-01-30 14:48:04 +08:00
import VXETablePluginAntd from './src/components';
import VXETablePluginExportXLSX from 'vxe-table-plugin-export-xlsx';
import ExcelJS from 'exceljs';
2023-01-30 14:48:04 +08:00
import './src/setting';
export const VxeBasicTable = withInstall(vxeBasicTable);
export * from 'vxe-table';
export * from './src/types';
VxeUI.use(VXETablePluginAntd).use(VXETablePluginExportXLSX, { ExcelJS });