@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
23 lines (17 loc) • 595 B
text/typescript
import type { App } from "vue";
import Steps from "./Steps.vue";
import StepItem from "./StepItem.vue";
import { registerComponent } from "@/utils/plugins";
import type { OrugaComponentPlugin } from "@/utils/config";
/** export steps specific types */
export type * from "./props";
export type * from "./types";
/** export steps plugin */
export default {
install(app: App): void {
registerComponent(app, Steps);
registerComponent(app, StepItem);
},
} satisfies OrugaComponentPlugin;
/** export steps components */
export { Steps as OSteps, StepItem as OStepItem };