UnisKB/ui/src/components/index.ts

15 lines
491 B
TypeScript
Raw Normal View History

2023-10-12 08:36:16 +00:00
import { type App } from 'vue'
import AppIcon from './icons/AppIcon.vue'
2023-10-16 10:58:51 +00:00
import LoginLayout from './login-layout/index.vue'
import LoginContainer from './login-container/index.vue'
2023-10-18 11:06:22 +00:00
import LayoutContent from './content-container/LayoutContent.vue'
2023-10-12 08:36:16 +00:00
export default {
install(app: App) {
app.component(AppIcon.name, AppIcon)
app.component(LoginLayout.name, LoginLayout)
app.component(LoginContainer.name, LoginContainer)
2023-10-18 11:06:22 +00:00
app.component(LayoutContent.name, LayoutContent)
2023-10-12 08:36:16 +00:00
}
}