登录注册

This commit is contained in:
李志鹏
2026-05-18 15:22:08 +08:00
parent 4af58134fd
commit d327797236
16 changed files with 734 additions and 14 deletions

View File

@@ -5,6 +5,7 @@ import { routes } from './routes'
import '@/assets/css/style.less'
import directives from './directives/index'
import i18n from './lang/index'
import store from './stores/index'
export const createApp = ViteSSG(App, {
routes,
@@ -13,6 +14,7 @@ export const createApp = ViteSSG(App, {
({ app }) => {
// 注册全局指令
app.use(directives)
app.use(store)
app.use(i18n)
}
)