main.js 882 B

12345678910111213141516171819202122232425262728293031
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import store from './store'
  4. import i18n from './util/lang/lang'
  5. import toastRegistry from './plugin/toast/index'
  6. import loadingRegistry from './plugin/loading/index'
  7. import loginPlugin from './plugin/login/index'
  8. // import popupCharge from '@eosget/eosget-components/popup/charge/'
  9. import popupRules from '@eosget/eosget-components/popup/rules/'
  10. import popupVip from '@eosget/eosget-components/popup/vip/'
  11. import popupValidate from '@/components/popup/validate'
  12. // import balanceDetail from '@eosget/eosget-components/popup/detail/'
  13. Vue.config.productionTip = false
  14. Vue.use(toastRegistry)
  15. Vue.use(loadingRegistry)
  16. Vue.use(loginPlugin)
  17. // Vue.use(popupCharge, store)
  18. Vue.use(popupRules)
  19. Vue.use(popupVip)
  20. // Vue.use(balanceDetail)
  21. Vue.use(popupValidate, store)
  22. new Vue({
  23. render: h => h(App),
  24. store,
  25. i18n
  26. }).$mount('#app')