UNPKG

birdpaper-ui

Version:

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

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