UNPKG

birdpaper-ui

Version:

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

11 lines (10 loc) 317 B
"use strict"; const checkbox = require("./src/checkbox.vue.js"); const config = require("../utils/config.js"); checkbox.name = config.getComponentsPrefix() + checkbox.name; const Checkbox = Object.assign(checkbox, { install: (app) => { app.component(checkbox.name, checkbox); } }); module.exports = Checkbox;