UNPKG

@oruga-ui/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

19 lines (14 loc) 481 B
import type { App } from "vue"; import Checkbox from "./Checkbox.vue"; import { registerComponent } from "@/utils/plugins"; import type { OrugaComponentPlugin } from "@/utils/config"; /** export checkbox specific types */ export type * from "./props"; /** export checkbox plugin */ export default { install(app: App): void { registerComponent(app, Checkbox); }, } satisfies OrugaComponentPlugin; /** export table components */ export { Checkbox as OCheckbox };