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