UNPKG

birdpaper-ui

Version:

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

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