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