1234567891011121314151617181920212223242526272829303132333435363738 |
- import Vue from 'vue'
- import App from './App'
- import store from './store'
- import {toast} from './utils/tools'
- import Cache from './utils/cache'
- import uView from "@/components/uview-ui";
- import minxinsApp from '@/mixins/app'
- import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"
- import {router,RouterMount} from './router.js'
- import routerLink from './js_sdk/uni-simple-router/link.vue'
- Vue.component('mescroll-body', MescrollBody)
- Vue.prototype.$toast = toast
- Vue.prototype.$Cache = Cache
- Vue.config.productionTip = false
- Vue.component('RouterLink', routerLink)
- // // #ifdef H5
- // const vconsole = require('vconsole')
- // Vue.prototype.$vconsole = new vconsole()
- // // #endif
- Vue.use(router)
- Vue.mixin(minxinsApp);
- Vue.use(uView);
- App.mpType = 'app'
- const app = new Vue({
- ...App,
- store
- })
- //v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
- // #ifdef H5
- RouterMount(app,router,'#app');
- // #endif
- // #ifndef H5
- app.$mount(); //为了兼容小程序及app端必须这样写才有效果
- // #endif
|