VUE:导出表格为excel文件

一、安装vue-json-excel插件

npm install vue-json-excel

项目main.js文件引入

import Vue from 'vue'
import JsonExcel from 'vue-json-excel'

Vue.component('downloadExcel', JsonExcel)

在项目中使用

<download-excel
    class = "export-excel-wrapper"
    :data = "json_data"
    :fields = "json_fields"
    name = "filename.xls">
    <!-- 上面可以自定义自己的样式,还可以引用其他组件button -->
    <!-- <el-button type="primary" size="small">导出EXCEL</el-button> -->
</download-excel>
原文地址:https://www.cnblogs.com/xxzb/p/13886251.html