maxkb/ui/src/components/index.ts
2023-10-12 16:36:16 +08:00

13 lines
386 B
TypeScript

import { type App } from 'vue'
import AppIcon from './icons/AppIcon.vue'
import LoginLayout from './layout/login-layout/index.vue'
import LoginContainer from './layout/login-container/index.vue'
export default {
install(app: App) {
app.component(AppIcon.name, AppIcon)
app.component(LoginLayout.name, LoginLayout)
app.component(LoginContainer.name, LoginContainer)
}
}