Browse Source

bug fix: help页面忘了与main页面同步改进

任一存 3 years ago
parent
commit
b77adb7c8e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      web/src/help.js

+ 5 - 0
web/src/help.js

@@ -1,9 +1,14 @@
 import Vue from 'vue'
 import Help from './Help.vue'
 import './assets/css/base.css'
+const config = require('./config.js')
+
+Vue.prototype.$eventBus = new Vue({})
 
 Vue.config.productionTip = false
 
+console.log(config.version);
+
 new Vue({
   render: h => h(Help),
 }).$mount('#app')