Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

main.js 419 B

4 år sedan
4 år sedan
4 år sedan
4 år sedan
12345678910111213141516
  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. // import '@/common/css/common.less';
  8. moment.locale('zh-cn')
  9. Vue.mixin(mixins)
  10. Vue.config.productionTip = process.env.NODE_ENV === 'development'
  11. Vue.prototype.$store = store
  12. new Vue({ ...App, mpType: 'app', store }).$mount()