Home > Web Front-end > JS Tutorial > body text

How to export data to Excel through el-table in vue2.0 + element UI

亚连
Release: 2018-06-02 09:29:57
Original
6949 people have browsed it

Below I will share with you a method for exporting el-table data to Excel in vue2.0 element UI. It has a good reference value and I hope it will be helpful to everyone.

1. Install related dependencies

Mainly two dependencies

npm install --save xlsx file-saver
Copy after login

If you want to see the use of the two plug-ins in detail, please go to github.

https://github.com/SheetJS/js-xlsx

https://github.com/eligrey/FileSaver.js

2. Introduce

import FileSaver from 'file-saver'
import XLSX from 'xlsx'
Copy after login

## into the component. 3. Write a method in the component methods.

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' }), 'sheetjs.xlsx')
 } catch (e) { if (typeof console !== 'undefined') console.log(e, wbout) }
 return wbout
},
Copy after login

Note: XLSX.uitls.table_to_book (the DOM node of the table is put in), sheetjs.xlsx is the name of the exported table, which can be modified!

4. Click the export button to execute the exportExcel method.

Screenshot of the code in the component:

The implementation effect diagram is as follows:

Export Transfer the data from the following table to excel.

Export to excel form, the results are as follows:

The above is what I compiled for everyone, I hope it will be useful to you in the future Everyone is helpful.

Related articles:

How to implement the scroll method on the mobile side in vue?

How to use jQuery to implement the toggle method of sliding left and right?

#How to implement value-passing and URL encoding conversion in JS forms?

The above is the detailed content of How to export data to Excel through el-table in vue2.0 + element UI. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!