综合办公系统
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.

1234567891011121314151617
  1. import Vue from 'vue'
  2. import App from './App'
  3. // 注册全局组件
  4. import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"
  5. import MescrollUni from "@/components/mescroll-uni/mescroll-uni.vue"
  6. Vue.component('mescroll-body', MescrollBody)
  7. Vue.component('mescroll-uni', MescrollUni)
  8. Vue.config.productionTip = false
  9. App.mpType = 'app'
  10. const app = new Vue({
  11. ...App
  12. })
  13. app.$mount()