birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
11 lines (10 loc) • 335 B
JavaScript
;
const popconfirm = require("./src/popconfirm.vue.js");
const config = require("../utils/config.js");
popconfirm.name = config.getComponentsPrefix() + popconfirm.name;
const Popconfirm = Object.assign(popconfirm, {
install: (app) => {
app.component(popconfirm.name, popconfirm);
}
});
module.exports = Popconfirm;