2024-10-17 05:04:16 +00:00
|
|
|
// #ifndef VUE3
|
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
|
|
App.mpType = 'app'
|
|
|
|
|
|
|
|
const app = new Vue({
|
|
|
|
...App
|
|
|
|
})
|
|
|
|
app.$mount()
|
2024-11-03 23:34:53 +00:00
|
|
|
|
2024-10-17 05:04:16 +00:00
|
|
|
// #endif
|
|
|
|
|
|
|
|
// #ifdef VUE3
|
2024-11-03 23:34:53 +00:00
|
|
|
import pinia from './store'
|
2024-10-17 05:04:16 +00:00
|
|
|
import { createSSRApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
export function createApp() {
|
|
|
|
const app = createSSRApp(App)
|
2024-11-03 23:34:53 +00:00
|
|
|
app.use(pinia)
|
2024-10-17 05:04:16 +00:00
|
|
|
return {
|
|
|
|
app
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// #endif
|