vue 导出Excel (基础版)

1.下载组件:cnpm install vue-json-excel

 

2.main.js中引入:

  import JsonExcel from ‘vue-json-excel‘

  Vue.component(‘downloadExcel‘, JsonExcel)

 

3.页面引用

  html:

            <download-excel
              class = "export-excel-wrapper"
              :data = "selected"
              :fields = "json_fields"
              name = "购置审批.xls">
              <!-- 上面可以自定义自己的样式,还可以引用其他组件button -->
              <el-button type="primary" @click="exportData" size="small">下载</el-button>
            </download-excel>
    vue 导出Excel (基础版)

 

 

  JS:

    vue 导出Excel (基础版)

 

 

 

 
 
 

vue 导出Excel (基础版)

上一篇:img 标签使用 base64 显示图片


下一篇:PyTorch之前向传播函数forward