mirror of
https://github.com/acepanel/panel.git
synced 2026-02-06 07:27:16 +08:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
import '@/styles/index.scss'
|
|
import '@/styles/reset.css'
|
|
import 'uno.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import { setupI18n } from '@/i18n/i18n'
|
|
import { setupRouter } from './router'
|
|
import { setupStore, useThemeStore } from './store'
|
|
import { setupNaiveDiscreteApi } from './utils'
|
|
|
|
import { install as VueMonacoEditorPlugin } from '@guolao/vue-monaco-editor'
|
|
|
|
import info from '@/api/panel/info'
|
|
|
|
async function setupApp() {
|
|
const app = createApp(App)
|
|
app.use(VueMonacoEditorPlugin, {
|
|
paths: {
|
|
vs: '/assets/vs'
|
|
},
|
|
'vs/nls': {
|
|
availableLanguages: { '*': 'zh-cn' }
|
|
}
|
|
})
|
|
await setupStore(app)
|
|
await setupNaiveDiscreteApi()
|
|
await setupPanel().then(() => {
|
|
setupI18n(app)
|
|
})
|
|
await setupRouter(app)
|
|
app.mount('#app')
|
|
}
|
|
|
|
const title = ref('')
|
|
|
|
const setupPanel = async () => {
|
|
const themeStore = useThemeStore()
|
|
await info
|
|
.panel()
|
|
.then((response) => response.json())
|
|
.then((data) => {
|
|
title.value = data.data.name || import.meta.env.VITE_APP_TITLE
|
|
themeStore.setLocale(data.data.locale || 'zh_CN')
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
})
|
|
}
|
|
|
|
setupApp()
|
|
|
|
export { title }
|