UNPKG

birdpaper-ui

Version:

一个通用的 vue3 UI组件库。A common vue3 UI component library.

12 lines (11 loc) 295 B
import BpInput from "./src/input.vue.js"; import { getComponentsPrefix } from "../utils/config.js"; BpInput.name = getComponentsPrefix() + BpInput.name; const Input = Object.assign(BpInput, { install: (app) => { app.component(BpInput.name, BpInput); } }); export { Input as default };