no message

Former-commit-id: efa5f4883dc660c18f2608f33df4da01846f9fc6
Former-commit-id: 6ab043a54f1052cca5e9c340f99f44de62837e8d
Former-commit-id: a8daea6186f738bb919b61c5c478596e4c5dae3e
This commit is contained in:
李杨
2018-02-15 15:30:00 +08:00
parent 244b4a7b1b
commit 3170e42acd
2 changed files with 11 additions and 0 deletions

View File

@@ -33,11 +33,14 @@ import store from '@/store/index.js'
// 插件 log简化
import pluginLog from '@/plugin/log'
// 插件 导出文件
import pluginImport from '@/plugin/import'
// 插件 导出文件
import pluginExport from '@/plugin/export'
Vue.use(ElementUI)
Vue.use(pluginLog)
Vue.use(pluginImport)
Vue.use(pluginExport)
Vue.config.productionTip = false

View File

@@ -0,0 +1,8 @@
// 库
export default {
install (Vue, options) {
Vue.prototype.$import = {
//
}
}
}