1、安装qf-export-excel模块
npm install qf-export-excel
2、引入
import qf from 'qf-export-excel'
3、定义格式
tableList:[
{
title: '姓名', //表头
key: 'name' //对应json键名
},{
title: '年龄',
key: 'age'
},{
title: '出生日期',
birthday: 'birthday'
}
]
4、数据格式
titleData:[{
name:"刘xx",
age:27,
birthday:'1995-1-1'
}]
5、导出
qf(定义格式,数据格式,表名)