Elementui exports data to xlsx and excel tables

Elementui exports data to xlsx and excel tables

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:
  • Export vue+element table to Excel file
  • How to export el-table data to Excel in vue2.0 + element UI

<<:  Nginx external network access intranet site configuration operation

>>:  Usage of mysql timestamp

Recommend

Implementation of MySQL joint index (composite index)

Joint Index The definition of the joint index in ...

vsftpd virtual user based on MySql authentication

Table of contents 1. MySQL installation 1.2 Creat...

Detailed explanation of JavaScript Promise and Async/Await

Table of contents Overview Four examples Example ...

Linux nohup to run programs in the background and view them (nohup and &)

1. Background execution Generally, programs on Li...

Drop-down menu implemented by HTML+CSS3+JS

Achieve results html <div class="containe...

WeChat applet development chapter: pitfall record

Recently, I participated in the development of th...

Detailed explanation of how to use the mysql backup script mysqldump

This article shares the MySQL backup script for y...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...

JavaScript implements random generation of verification code and verification

This article shares the specific code of JavaScri...

WeChat applet implements a simple calculator

WeChat applet's simple calculator is for your...

Optimizing query speed of MySQL with tens of millions of data using indexes

1. The role of index Generally speaking, an index...

The basic principles and detailed usage of viewport

1. Overview of viewport Mobile browsers usually r...

Ubuntu terminal multi-window split screen Terminator

1. Installation The biggest feature of Terminator...

Understand CSS3 FlexBox elastic layout in 10 minutes

Basic Introduction Features Flexbox is a CSS disp...