1.安装依赖
npm i -S vue-json-excel
2.在main.js中注册
import JsonExcel from 'vue-json-excel'
Vue.component('downloadExcel', JsonExcel)
3.使用
:data="tableData" 需要导出的表格数据
json_fields:自主选择要导出的字段,若不指定,默认导出全部数据中心全部字段
<download-excel class="export-excel-wrapper" :data="tableData" :fields="json_fields" type="xls"
worksheet="My Worksheet" name="折旧报表">
<el-button>导出EXCEL</el-button>
</download-excel>