Vue element-ui 裡面的table匯出excel表格 步驟
使用element-ui el-table這個元件,
第一步: 安裝element-ui的環境
npm i element-ui -S
第二步: 匯出表格的依
npm install --save xlsx file-saver
第三步 新增一個類名或id名或ref
<el-table id="table" :data="tdata4" height="405" border style="width: 100%">
//定義一個id或者類名都可以,只要能取到 ,ref這個也是可以的
第四步: 新增一個事件
<button @click="exportExcel">匯出資料</button>
第五步:需要使用的頁面匯入
import FileSaver from "file-saver";
import XLSX from "xlsx";
import jsonp from "jsonp";
第六步: 匯出資料
//匯出資料
exportExcel () {
let wb = XLSX.utils.table_to_book(document.querySelector('#table')); // 這裡就是表格
let wbout = XLSX.write(wb, { bookType: 'xlsx', bookSST: true, type: 'array' });
try {
FileSaver.saveAs(new Blob([wbout], { type: 'application/octet-stream' }), 'table.xlsx'); //table是自己匯出檔案時的命名,隨意
} catch (e)
{
if (typeof console !== 'undefined')
console.log(e, wbout)
}
return wbout
},
ok!
相關文章
- element-UI庫Table表格匯出Excel表格UIExcel
- Element-ui元件庫Table表格匯出Excel表格UI元件Excel
- vue匯出excel表格步驟以及易出錯點VueExcel
- vue+elementUI el-table匯出excel表格VueUIExcel
- vue匯出Excel表格VueExcel
- Element-ui,Vue表格匯出生成Excel表UIVueExcel
- vue + element + 匯入、匯出excel表格VueExcel
- vue + element UI 中 el-table 資料匯出Excel表格VueUIExcel
- vue+elementUI表格匯出excelVueUIExcel
- vue將表格匯出為excelVueExcel
- Vue實現匯出excel表格VueExcel
- vue匯出excel資料表格功能VueExcel
- vue實現前端匯出excel表格Vue前端Excel
- element-ui匯出表格UI
- element-ui匯出excel表格,程式碼基於vue-element-admin-masterUIExcelVueAST
- element-ui 匯出excelUIExcel
- Vue匯出資料到Excel電子表格VueExcel
- vue2.0 匯出Excel表格資料VueExcel
- 電腦製作excel表格全步驟 excel製作表格的步驟教程Excel
- js匯出Excel表格JSExcel
- vue+element將資料匯出成excel表格VueExcel
- Excel 匯入 SQL Server 步驟:ExcelSQLServer
- VUE中使用vue-json-excel超級方便匯出excel表格資料VueJSONExcel
- SAP UI5 表格資料如何匯出成 Excel 檔案(Table Export As Excel)UIExcelExport
- vue.js前端實現excel表格匯出和獲取headers裡的資訊Vue.js前端ExcelHeader
- Vue匯出ExcelVueExcel
- vue excel匯入匯出VueExcel
- Vue+element ui table 匯出到excelVueUIExcel
- 資料匯出為excel表格Excel
- 騰訊文件怎樣匯出excel表格 騰訊文件如何匯出excelExcel
- vue 前端匯出 excelVue前端Excel
- springboot poi匯出excel表格Spring BootExcel
- 前端常用方法之匯出excel表格前端Excel
- PHP匯出大量資料到excel表格PHPExcel
- html table 匯出excel,親測有效HTMLExcel
- vue 專案中 實現列表的匯出excel表格的功能VueExcel
- vue2.0 + element UI 中 el-table 資料匯出Excel 。VueUIExcel
- phpExcel實現Excel資料的匯入匯出(全步驟詳細解析)PHPExcel