no message

Former-commit-id: 592b6acf252bd8bce1a6b2b1eb44e0557c905289
Former-commit-id: 2891162783d81bd2612ef2a2ecfe2931ecb90b60
Former-commit-id: 0b3da8d343ae2d7005c08d3670367f910d615edd
This commit is contained in:
李杨
2018-02-11 22:02:18 +08:00
parent 38de16e912
commit 3d0b998ea0

View File

@@ -47,12 +47,18 @@ export default {
columns: this.table.columns,
data: this.table.data
})
.then(data => {
this.$log('exportCsv', data)
})
},
exportExcel () {
this.$export.excel({
columns: this.table.columns,
data: this.table.data
})
.then(data => {
this.$log('exportExcel', data)
})
}
}
}