38 lines
689 B
JavaScript
38 lines
689 B
JavaScript
import App from './App'
|
|
import uviewPlus from 'uview-plus'
|
|
import * as Pinia from "pinia";
|
|
import {
|
|
createUnistorage
|
|
} from "pinia-plugin-unistorage";
|
|
import {
|
|
useCommonStore
|
|
} from '@/store/common.js'
|
|
// #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)
|
|
const store = Pinia.createPinia();
|
|
store.use(createUnistorage());
|
|
app.use(uviewPlus)
|
|
app.use(store)
|
|
|
|
const $common = useCommonStore()
|
|
$common.init()
|
|
return {
|
|
app,
|
|
Pinia
|
|
}
|
|
}
|
|
// #endif
|