UnisKB/ui/src/components/index.ts

26 lines
985 B
TypeScript
Raw Normal View History

2025-04-16 11:10:00 +00:00
import { type App } from 'vue'
import LogoFull from './logo/LogoFull.vue'
import LogoIcon from './logo/LogoIcon.vue'
import SendIcon from './logo/SendIcon.vue'
2025-04-28 10:14:16 +00:00
import dynamicsForm from './dynamics-form'
import AppIcon from './app-icon/AppIcon.vue'
2025-04-30 06:53:42 +00:00
import LayoutContainer from './layout-container/index.vue'
import ContentContainer from './layout-container/ContentContainer.vue'
2025-05-07 07:58:42 +00:00
import CardBox from './card-box/index.vue'
2025-05-08 08:23:03 +00:00
import FolderTree from './folder-tree/index.vue'
2025-05-13 08:19:21 +00:00
import CommonList from './common-list/index.vue'
2025-04-16 11:10:00 +00:00
export default {
install(app: App) {
app.component('LogoFull', LogoFull)
app.component('LogoIcon', LogoIcon)
app.component('SendIcon', SendIcon)
2025-04-28 10:14:16 +00:00
app.use(dynamicsForm)
app.component('AppIcon', AppIcon)
2025-04-30 06:53:42 +00:00
app.component('LayoutContainer', LayoutContainer)
app.component('ContentContainer', ContentContainer)
2025-05-07 07:58:42 +00:00
app.component('CardBox', CardBox)
2025-05-08 08:23:03 +00:00
app.component('FolderTree', FolderTree)
2025-05-13 08:19:21 +00:00
app.component('CommonList', CommonList)
2025-04-16 11:10:00 +00:00
},
}