新增国际化

This commit is contained in:
liuziting
2026-01-21 17:20:16 +08:00
parent 7559efa93a
commit f642ba1916
7 changed files with 287 additions and 76 deletions

View File

@@ -1,5 +1,9 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import i18n from './i18n'
const app = createApp(App)
app.use(i18n)
app.mount('#app')
createApp(App).mount('#app')