UNPKG

birdpaper-ui

Version:

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

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