You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
380 B

  1. import Vue from 'vue'
  2. import moment from 'moment'
  3. import App from '@/App.vue'
  4. import store from '@/common/store.js'
  5. import mixins from '@/common/mixins.js'
  6. import '@/components/learun-mpui'
  7. moment.locale('zh-cn')
  8. Vue.mixin(mixins)
  9. Vue.config.productionTip = process.env.NODE_ENV === 'development'
  10. Vue.prototype.$store = store
  11. new Vue({ ...App, mpType: 'app', store }).$mount()