feat: add admin panel (#31)

* feat: add admin panel

* feature: update limit
This commit is contained in:
Dream Hunter
2023-10-09 23:03:15 +08:00
committed by GitHub
parent 0f74bde850
commit 5cfc78d70d
15 changed files with 343 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createI18n } from 'vue-i18n'
import router from './router'
const i18n = createI18n({
legacy: false, // you must set `false`, to use Composition API
@@ -15,4 +16,5 @@ const i18n = createI18n({
})
const app = createApp(App)
app.use(i18n)
app.use(router)
app.mount('#app')