@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
16 lines (11 loc) • 316 B
text/typescript
import type { App, Plugin } from "vue";
import Field from "./Field.vue";
import { registerComponent } from "@/utils/plugins";
/** export field plugin */
export default {
install(app: App) {
registerComponent(app, Field);
},
} as Plugin;
/** export field components */
export { Field as OField };