33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import useStore from '@store/index'
|
|
import router from './router'
|
|
import tools from './plugins/tools'
|
|
import elementPlugins from './plugins/element'
|
|
import globalComponents from './plugins/components'
|
|
import axios from '@/utils/axios'
|
|
import api from './api'
|
|
import App from './app.vue'
|
|
import './assets/scss/reset.scss'
|
|
import './assets/scss/global.scss'
|
|
|
|
const app = createApp(App)
|
|
elementPlugins(app)
|
|
globalComponents(app)
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.config.globalProperties.$api = api
|
|
app.config.globalProperties.$tools = tools
|
|
app.config.globalProperties.$http = axios
|
|
app.config.globalProperties.$store = useStore()
|
|
|
|
const serviceURI = import.meta.env.DEV ? process.env.serviceURI : location.origin
|
|
app.config.globalProperties.$serviceURI = serviceURI
|
|
app.config.globalProperties.$clientPort = process.env.clientPort || 22022
|
|
app.config.globalProperties.$store.$patch({ serviceURI })
|
|
console.warn('ISDEV: ', import.meta.env.DEV)
|
|
console.warn('serviceURI: ', serviceURI)
|
|
|
|
app.mount('#app')
|