You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
790 B
49 lines
790 B
import App from './App' |
|
|
|
// #ifndef VUE3 |
|
import Vue from 'vue' |
|
|
|
// 引入uView |
|
import uView from '@/uni_modules/uview-ui' |
|
Vue.use(uView) |
|
|
|
// 全局配置根域名 |
|
uni.$u.http.setConfig((config) => { |
|
/* config 为默认全局配置*/ |
|
config.baseURL = `http://192.168.2.101:8080/api/app`; |
|
return config |
|
}) |
|
|
|
// Vuex |
|
import store from '@/store'; |
|
import vuexStore from '@/store/$u.mixin.js'; |
|
Vue.mixin(vuexStore); |
|
|
|
import './uni.promisify.adaptor' |
|
Vue.config.productionTip = false |
|
App.mpType = 'app' |
|
|
|
const app = new Vue({ |
|
store, |
|
...App |
|
}) |
|
app.$mount() |
|
// #endif |
|
|
|
|
|
// #ifdef VUE3 |
|
import { |
|
createSSRApp |
|
} from 'vue' |
|
|
|
// 引入uView主JS库 |
|
import uView from '@/uni_modules/uview-ui' |
|
Vue.use(uView) |
|
|
|
export function createApp() { |
|
const app = createSSRApp(App) |
|
return { |
|
app |
|
} |
|
} |
|
// #endif
|