32 lines
585 B
JavaScript
32 lines
585 B
JavaScript
import App from './App'
|
|
import uView from "uview-ui";
|
|
Vue.use(uView);
|
|
import config from '@/config'
|
|
|
|
import share from './utils/share.js'
|
|
Vue.mixin(share)
|
|
const baseUrl = config.baseUrl
|
|
Vue.prototype.$baseUrl = baseUrl;
|
|
Vue.prototype.$imageUrl = config.imageUrl;
|
|
// #ifndef VUE3
|
|
import Vue from 'vue'
|
|
import './uni.promisify.adaptor'
|
|
Vue.config.productionTip = false
|
|
App.mpType = 'app'
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|
|
// #endif
|
|
|
|
// #ifdef VUE3
|
|
import {
|
|
createSSRApp
|
|
} from 'vue'
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
return {
|
|
app
|
|
}
|
|
}
|
|
// #endif
|