# 导出数据 ## 使用 ### 注册插件 ``` import pluginExport from '@/plugin/export' Vue.use(pluginExport) ``` ### 导出 `CSV` 使用方法 ``` this.$export.csv({ columns: this.table.columns, data: this.table.data }) ```