码迷,mamicode.com
首页 > 其他好文 > 详细

2.0vue导出excel

时间:2019-04-23 22:39:26      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:sele   导出excel   typeof   bin   array   class   依赖   string   span   


如果没有插件导入
import FileSaver from ‘file-saver‘
import XLSX from ‘xlsx‘

导入依赖
import FileSaver from ‘file-saver‘
import XLSX from ‘xlsx‘


table>>>>>>id
id="out-table"

方法里面如下
//da导出表格
exportExcel () { /* generate workbook object from table */
var wb = XLSX.utils.table_to_book(document.querySelector(‘#out-table‘))
/* get binary string as output */
var wbout = XLSX.write(wb, { bookType: ‘xlsx‘, bookSST: true, type: ‘array‘ })
try { FileSaver.saveAs(new Blob([wbout], { type: ‘application/octet-stream‘ }),
‘订单详情.xlsx‘)
} catch (e) {
if (typeof console !== ‘undefined‘)
console.log(e, wbout)
} return wbout
},
// 导入表格

2.0vue导出excel

标签:sele   导出excel   typeof   bin   array   class   依赖   string   span   

原文地址:https://www.cnblogs.com/wangbiaohistory/p/10759446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!