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.
 
 
 
 

35 lines
755 B

import App from './App'
// #ifndef VUE3
import Vue from 'vue'
// 引入组件库
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
// 封装请求
import {$http} from '@/utils/api.js'
import {BASE_URL} from '@/utils/api.js'
import {API_URL} from '@/utils/api.js'
import './assets/iconfont/iconfont.css'
Vue.prototype.$http = $http
Vue.prototype.BASE_URL = BASE_URL
Vue.prototype.API_URL = API_URL
// 建立数据管理仓库
// import store from './store'
// Vue.prototype.$store = store
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