feat(I18n): Add Ii8n

feat(LocaleDropdown): Add LocaleDropdown Component

feat(store): Add localeStore
This commit is contained in:
kailong321200875
2022-01-03 09:41:34 +08:00
parent 45d657d44c
commit 3810b8c3b2
42 changed files with 1033 additions and 625 deletions

6
src/components/index.ts Normal file
View File

@@ -0,0 +1,6 @@
import type { App } from 'vue'
import { Icon } from './Icon'
export function setupGlobCom(app: App<Element>): void {
app.component('Icon', Icon)
}