Recently, I learned about the Vue project and came across ElementUI exporting data to xlsx and Excel tables. Today, I will introduce it to you and leave a note for yourself for easy query. In order to make it easier for students to understand, I have written all the elements on one page. 1. The first step is to install the plug-in npm install file-saver npm install xlsx 2. The second step is to set up global in main.js //Export excel table template in vue import FileSaver from 'file-saver' import XLSX from 'xlsx' Vue.prototype.$FileSaver = FileSaver; //Set global Vue.prototype.$XLSX = XLSX; //Set global 3. The third step is to use <template> <div class="daochu"> <el-button @click="o" type="success" round>Export</el-button> <el-table id="ou" :data="tableData" style="width: 100%" :default-sort="{ prop: 'date', order: 'descending' }" > <el-table-column prop="date" label="Date" sortable width="180"> </el-table-column> <el-table-column prop="name" label="Name" sortable width="180"> </el-table-column> <el-table-column prop="address" label="Address" :formatter="formatter"> </el-table-column> </el-table> </div> </template> <script> export default { data() { return { tableData: [ { date: "2016-05-02", name: "Wang Xiaohu", address: "No. 1518, Jinshajiang Road, Putuo District, Shanghai", }, { date: "2016-05-04", name: "Wang Xiaohu", address: "No. 1517, Jinshajiang Road, Putuo District, Shanghai", } ], }; }, methods:{ o() { let tables = document.getElementById("ou"); let table_book = this.$XLSX.utils.table_to_book(tables); var table_write = this.$XLSX.write(table_book, { bookType: "xlsx", bookSST: true, type: "array", }); try { this.$FileSaver.saveAs( new Blob([table_write], { type: "application/octet-stream" }), "sheetjs.xlsx" ); } catch (e) { if (typeof console !== "undefined") console.log(e, table_write); } return table_write; }, } } </script> You can see that it has been exported In actual work, it is more reasonable to separate the export button and make it reusable. This is the end of this article about elementui exporting data to xlsx and excel tables. For more relevant content about elementui exporting data to xlsx and excel tables, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Nginx external network access intranet site configuration operation
Joint Index The definition of the joint index in ...
Table of contents 1. MySQL installation 1.2 Creat...
Table of contents Overview Four examples Example ...
1. Background execution Generally, programs on Li...
Achieve results html <div class="containe...
Recently, I participated in the development of th...
This article shares the MySQL backup script for y...
When a user registers, they will click on a label...
This article describes the steps to install the p...
This article shares the specific code of JavaScri...
WeChat applet's simple calculator is for your...
1. The role of index Generally speaking, an index...
1. Overview of viewport Mobile browsers usually r...
1. Installation The biggest feature of Terminator...
Basic Introduction Features Flexbox is a CSS disp...