mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:40:25 +00:00
34 lines
766 B
JavaScript
34 lines
766 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import ElementPlus from 'element-plus'
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|
import 'element-plus/dist/index.css'
|
|
import 'element-plus/theme-chalk/dark/css-vars.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { useUserStore } from './stores/user'
|
|
import './assets/styles/main.css'
|
|
import './assets/styles/global.css'
|
|
|
|
// 创建Vue应用
|
|
const app = createApp(App)
|
|
|
|
// 使用Pinia状态管理
|
|
const pinia = createPinia()
|
|
app.use(pinia)
|
|
|
|
// 使用路由
|
|
app.use(router)
|
|
|
|
// 使用Element Plus
|
|
app.use(ElementPlus, {
|
|
locale: zhCn
|
|
})
|
|
|
|
// 设置axios拦截器
|
|
const userStore = useUserStore()
|
|
userStore.setupAxiosInterceptors()
|
|
|
|
// 挂载应用
|
|
app.mount('#app')
|