Former-commit-id: ab72d9fb7d7afa7eb8b8c9c76ec99aa7c0f04e15 Former-commit-id: 402a1fd09fbab93c2d4a476a3f6331d22c527c38 Former-commit-id: 586642dbccc2499c4fc5626cdcca743d43a7ed46
17 lines
196 B
Markdown
17 lines
196 B
Markdown
# 导出数据
|
|
|
|
注册插件
|
|
|
|
```
|
|
import pluginExport from '@/plugin/export'
|
|
Vue.use(pluginExport)
|
|
```
|
|
|
|
使用
|
|
|
|
```
|
|
this.$export.csv({
|
|
columns: this.table.columns,
|
|
data: this.table.data
|
|
})
|
|
``` |