UNPKG

@koishijs/client

Version:

Koishi Console Client

15 lines (13 loc) 424 B
import { App } from 'vue' import Card from './card.vue' import Content from './content.vue' import Empty from './empty.vue' import TabGroup from './tab-group.vue' import TabItem from './tab-item.vue' export default function (app: App) { app.component('k-card', Card) app.component('k-content', Content) app.component('k-empty', Empty) app.component('k-tab-group', TabGroup) app.component('k-tab-item', TabItem) }