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