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