oil-station/gasStation-uni/main.js
2023-12-29 16:50:44 +08:00

32 lines
585 B
JavaScript

import App from './App'
import uView from "uview-ui";
Vue.use(uView);
import config from '@/config'
import share from './utils/share.js'
Vue.mixin(share)
const baseUrl = config.baseUrl
Vue.prototype.$baseUrl = baseUrl;
Vue.prototype.$imageUrl = config.imageUrl;
// #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)
return {
app
}
}
// #endif