基本国际化处理

This commit is contained in:
Gary Fu
2023-06-24 18:59:44 +08:00
parent 21945dc63c
commit fbe2af466e
11 changed files with 280 additions and 73 deletions

View File

@@ -4,6 +4,8 @@ import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
import messagesConfig from '@/languages/MessagesConfig'
import App from './App.vue'
import router from './router'
@@ -14,6 +16,7 @@ const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(ElementPlus)
app.use(messagesConfig)
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(key, component)