UNPKG

birdpaper-ui

Version:

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

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