47 lines
890 B
JavaScript
47 lines
890 B
JavaScript
import App from './App'
|
|
|
|
// #ifndef VUE3
|
|
import Vue from 'vue'
|
|
import store from './store'
|
|
import {
|
|
toast,
|
|
copy
|
|
} from './utils/tools'
|
|
import Cache from './utils/cache'
|
|
import minxinsApp from '@/mixins/app'
|
|
import uView from "@/components/uview-ui";
|
|
|
|
// 注册全局组件
|
|
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)
|
|
|
|
Vue.prototype.$toast = toast
|
|
Vue.prototype.$copy = copy
|
|
Vue.prototype.$Cache = Cache
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
Vue.use(uView);
|
|
App.mpType = 'app'
|
|
Vue.mixin(minxinsApp);
|
|
const app = new Vue({
|
|
...App,
|
|
store
|
|
})
|
|
app.$mount()
|
|
|
|
// #endif
|
|
|
|
// #ifdef VUE3
|
|
import {
|
|
createSSRApp
|
|
} from 'vue'
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
return {
|
|
app
|
|
}
|
|
}
|
|
// #endif
|