32 lines
709 B
JavaScript
32 lines
709 B
JavaScript
import App from './App'
|
||
|
||
// #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'
|
||
import { store, useStore } from './store'
|
||
export function createApp() {
|
||
const app = createSSRApp(App)
|
||
|
||
// 将store挂载到全局
|
||
app.config.globalProperties.$store = store
|
||
|
||
// 从缓存读取系统信息(已在App.vue中获取)
|
||
const systemInfo = uni.getStorageSync('systemInfo') || {}
|
||
app.config.globalProperties.$platform = systemInfo.platform
|
||
app.config.globalProperties.$systemInfo = systemInfo
|
||
|
||
return {
|
||
app
|
||
}
|
||
}
|
||
// #endif
|