UNPKG

birdpaper-ui

Version:

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

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