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
|
||
|
|
})
|
||
|
|
```
|