birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
12 lines (11 loc) • 298 B
JavaScript
import _drawer from "./src/drawer.vue.js";
import { getComponentsPrefix } from "../utils/config.js";
_drawer.name = getComponentsPrefix() + _drawer.name;
const Drawer = Object.assign(_drawer, {
install: (app) => {
app.component(_drawer.name, _drawer);
}
});
export {
Drawer as default
};