26 lines
916 B
JavaScript
26 lines
916 B
JavaScript
import { createApp } from 'vue'
|
|
import mitt from 'mitt'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import './styles/global.css'
|
|
|
|
//window.$baseURL = 'https://www.abas.asia/hqhd'
|
|
//window.$baseURL = 'http://127.0.0.1:8000'
|
|
//window.$baseURL = 'https://ios808.top/hqhd'
|
|
window.$baseURL = 'https://wenhe.nmslb.com/hqhd'
|
|
|
|
//window.$ossURL = 'https://julebu-1361527063.cos.ap-shanghai.myqcloud.com/'
|
|
//window.$ossURL = 'https://xingque999qygwuyq-1404472910.cos.ap-shanghai.myqcloud.com/'
|
|
window.$ossURL = 'https://wenhedskjdshjshfjshjfjksdnk236-1404472910.cos.ap-guangzhou.myqcloud.com/'
|
|
|
|
|
|
//window.$ossURL = 'https://along999jhsjkjkas-1404472910.cos.ap-shanghai.myqcloud.com/'
|
|
|
|
const emitter = mitt()
|
|
const app = createApp(App)
|
|
app.config.globalProperties.$emitter = emitter
|
|
app.use(router)
|
|
app.use(ElementPlus)
|
|
app.mount('#app') |