UNPKG

birdpaper-ui

Version:

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

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