mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-24 07:30:15 +01:00
33 lines
716 B
JavaScript
33 lines
716 B
JavaScript
import { createApp, toRaw } from 'vue'
|
|
import App from './App.vue'
|
|
import { mockAPI } from './utils/index.js'
|
|
import ws from './utils/ws.js'
|
|
import { i18n, t } from '@/locales/index.js'
|
|
import plugins from '@/plugins/index.js'
|
|
import icons from '@/icons/index.js'
|
|
|
|
import { replaceIP, restoreIP } from '@/utils/index.js'
|
|
|
|
import 'virtual:uno.css'
|
|
import '@/styles/index.js'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(plugins)
|
|
|
|
app.use(icons)
|
|
|
|
app.use(i18n)
|
|
window.t = t
|
|
|
|
app.config.globalProperties.$replaceIP = replaceIP
|
|
app.config.globalProperties.$restoreIP = restoreIP
|
|
|
|
app.config.globalProperties.$toRaw = toRaw
|
|
|
|
app.config.globalProperties.$mockAPI = mockAPI
|
|
|
|
app.config.globalProperties.$ws = ws
|
|
|
|
app.mount('#app')
|