no message

Former-commit-id: 9593f54f182e94d413e0b4fc1fcd82a52a779178
Former-commit-id: fb046e79ef923ced449c8e313209963b7106bc9d
Former-commit-id: 82dcc467d302e3b556b1c0dbcb43b6c0d29be11c
This commit is contained in:
李杨
2018-02-11 11:32:36 +08:00
parent 91fcf3275f
commit 63fb9defce
2 changed files with 3 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
// 库
import Csv from './_csv'
import ExportCsv from './_export-csv'
import * as excel from './_export2Excel'
import * as Excel from './_export2Excel'
export default {
install (Vue, options) {
Vue.prototype.$export = {
@@ -29,7 +29,7 @@ export default {
excel () {
const tHeader = ['Id', 'Title', 'Author', 'Readings', 'Date']
const data = []
excel.export_json_to_excel(tHeader, data, 'demo')
Excel.export_json_to_excel(tHeader, data, 'demo')
}
}
}