Files
location_point/main.js
2026-02-23 16:31:39 +08:00

28 lines
434 B
JavaScript

import App from './App'
import store from './store'
// #ifndef VUE3
import Vue from 'vue'
Vue.prototype.$store = store
import uView from "uview-ui";
Vue.use(uView);
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif