Happy-Coding-Clans / vue-easytable

A powerful data table based on vuejs. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
https://happy-coding-clans.github.io/vue-easytable/
MIT License
3.63k stars 725 forks source link

[Feature Request] 希望可以增加表格数据导出功能 #598

Open jjbnxy opened 8 months ago

jjbnxy commented 8 months ago

选择要提交 issue 的库

vue-easytable

Issue 类型

Feature

Issue 标题

希望可以增加表格数据导出功能

这个功能解决了什么问题?

可以将表格数据下载到excel中

你期望的 API 是什么样的?

this.$refs.table.exportCsv({ filename: 'Custom data', columns: this.columns8.filter((col, index) => index < 4), data: this.data7.filter((data, index) => index < 4) }); 通过ref获取表格实例中的下载方法,并且可以设置文件名、类型、指定下载那些列(列可以做其他处理,比如重命名)、设置表格的sheet名、表格的标题等