This commit is contained in:
xuliangzhan
2024-01-21 11:04:48 +08:00
parent 063c3ad85b
commit ef1e72cc0f
4 changed files with 26 additions and 12 deletions

4
types/index.d.ts vendored
View File

@@ -4,7 +4,9 @@ import { VXETableCore } from 'vxe-table'
* 基于 vxe-table 表格的扩展插件,支持导出 xlsx 格式
*/
export declare const VXETablePluginExportXLSX: {
install (vxetable: VXETableCore): void
install (vxetable: VXETableCore, options?: {
ExcelJS?: any
}): void
}
export default VXETablePluginExportXLSX