Antd将Table导出为Excel 在最近的项目中,需要把表格中的数据导出给财务进行统计,网上很多一键导出的按钮都没用.经过东拼西凑,最终搞定了导出,自己封装了组件. import { File } from 'better-xlsx'; import { saveAs } from 'file-saver'; function ExportExcel(column, dataSource, fileName = 'example') { // 新建工作谱 const file = new F…