@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
20 lines (14 loc) • 469 B
text/typescript
import type { App } from "vue";
import Select from "./Select.vue";
import { registerComponent } from "@/utils/plugins";
import type { OrugaComponentPlugin } from "@/utils/config";
/** export select specific types */
export type * from "./props";
/** export select plugin */
export default {
install(app: App): void {
registerComponent(app, Select);
},
} satisfies OrugaComponentPlugin;
/** export select components */
export { Select as OSelect };