alipay-emulator/main.js

36 lines
757 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
// 获取系统信息并挂载到全局
const systemInfo = uni.getSystemInfoSync()
app.config.globalProperties.$platform = systemInfo.platform
app.config.globalProperties.$systemInfo = systemInfo
// 获取系统信息
const { getSystemInfo } = useStore()
getSystemInfo()
return {
app
}
}
// #endif