UNPKG

@oruga-ui/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

20 lines (14 loc) 477 B
import type { App } from "vue"; import Tooltip from "./Tooltip.vue"; import { registerComponent } from "@/utils/plugins"; import type { OrugaComponentPlugin } from "@/utils/config"; /** export tooltip specific types */ export type * from "./props"; /** export tooltip plugin */ export default { install(app: App): void { registerComponent(app, Tooltip); }, } satisfies OrugaComponentPlugin; /** export tooltip components */ export { Tooltip as OTooltip };