//安装依赖 npm install js-table2excel //引入 import table2excel from 'js-table2excel';
//定义表头和内容,key等于接口返回的字段 const column = [ { title: 'id', key: 'id', type: 'text', }, { title: '景区名称', key: 'sciencename', type: 'text', }, { title: '兑换码', key: 'redeem_code', type: 'text', }, { title: '使用状态', key: 'state', type: 'text', }, { title: '创建时间', key: 'time', type: 'text', }, ];
const exp = ()=>{ table2excel(column,tableData.value, '兑换码'); } //tableData.value是数据的数组名称