main.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * @Author: zhuangzhou zhuangzhou@btioe.com
  3. * @Date: 2022-05-04 15:20:57
  4. * @LastEditors: zhuangzhou zhuangzhou@btioe.com
  5. * @LastEditTime: 2022-05-04 20:08:42
  6. * @FilePath: /mlmt-mini/src/main.js
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import Vue from 'vue'
  10. import App from './App'
  11. import store from '@/store'
  12. import { logger, valid, message, common, cache, init, router, event, wxLog, util } from '@/utils'
  13. import service from './service'
  14. import mixin from '@/mixin/base'
  15. import page from '@/components/page'
  16. import CmButton from '@/components/cm-button'
  17. import uView from '@/uni_modules/uview-ui'
  18. App.mpType = 'app'
  19. Vue.config.productionTip = false
  20. Vue.prototype.$store = store
  21. // 打日志console.log, 发布环境会过滤
  22. Vue.prototype.$log = logger.log
  23. // 一些验证的方法,没有的自己往里面加
  24. Vue.prototype.$valid = valid
  25. Vue.prototype.$cache = cache
  26. // wx弹出框,toast,toastSuccess,alert,confirm, 别的也可以往里面加
  27. Vue.prototype.$message = message
  28. Vue.prototype.$common = common
  29. Vue.prototype.$router = router
  30. Vue.prototype.$service = service
  31. Vue.prototype.$event = event
  32. Vue.prototype.$wxLog = wxLog
  33. Vue.prototype.$util = util
  34. Vue.use(uView)
  35. Vue.mixin(mixin)
  36. Vue.component('page', page)
  37. Vue.component('CmButton', CmButton)
  38. init()
  39. const app = new Vue({
  40. ...App,
  41. store
  42. })
  43. app.$mount()