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