@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
19 lines (13 loc) • 387 B
text/typescript
import type { App, Plugin } from "vue";
import Select from "./Select.vue";
import { registerComponent } from "@/utils/plugins";
/** export select specific types */
// no types to export here
/** export select plugin */
export default {
install(app: App) {
registerComponent(app, Select);
},
} as Plugin;
/** export select components */
export { Select as OSelect };