Blame view

main.js 593 Bytes
c7add6cf   “wangming”   初始版本开发完毕
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  import Vue from 'vue';

  import App from './App';

  import apis from './apis/index.js'

  // 弹出框

  import DialogBox from './components/DialogBox/DialogBox';

  

  

  Vue.config.productionTip = false

  Vue.prototype.API=apis

  

  // 全局组件
  Vue.component('DialogBox', DialogBox);

  //mescroll

  import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"
  import MescrollUni from "@/components/mescroll-uni/mescroll-uni.vue"
  Vue.component('mescroll-body', MescrollBody)
  Vue.component('mescroll-uni', MescrollUni)

  

  App.mpType = 'app'

  
  const app = new Vue({
      ...App
  })

  app.$mount()