2018-02-10 22:12:33 +08:00
|
|
|
# 导出数据
|
|
|
|
|
|
2018-02-10 22:17:43 +08:00
|
|
|
## 使用
|
|
|
|
|
|
|
|
|
|
### 注册插件
|
2018-02-10 22:12:33 +08:00
|
|
|
|
|
|
|
|
```
|
|
|
|
|
import pluginExport from '@/plugin/export'
|
|
|
|
|
Vue.use(pluginExport)
|
|
|
|
|
```
|
|
|
|
|
|
2018-02-10 22:17:43 +08:00
|
|
|
### 导出 `CSV`
|
|
|
|
|
|
|
|
|
|
使用方法
|
2018-02-10 22:12:33 +08:00
|
|
|
|
|
|
|
|
```
|
|
|
|
|
this.$export.csv({
|
|
|
|
|
columns: this.table.columns,
|
|
|
|
|
data: this.table.data
|
|
|
|
|
})
|
|
|
|
|
```
|