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