Zhong
2024-03-05 bc5e5fa015f8c5f1d69f3f8572a1957d83cfe44e
fix(component): resolve the issue of "vxe-table" export function not being able to be used (#3646)

closed #3614
1个文件已修改
3 ■■■■ 已修改文件
src/components/VxeTable/index.ts 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/VxeTable/index.ts
@@ -3,10 +3,11 @@
import { VXETable } from 'vxe-table';
import VXETablePluginAntd from './src/components';
import VXETablePluginExportXLSX from 'vxe-table-plugin-export-xlsx';
import ExcelJS from 'exceljs';
import './src/setting';
export const VxeBasicTable = withInstall(vxeBasicTable);
export * from 'vxe-table';
export * from './src/types';
VXETable.use(VXETablePluginAntd).use(VXETablePluginExportXLSX);
VXETable.use(VXETablePluginAntd).use(VXETablePluginExportXLSX, { ExcelJS });