mt-ui-components-vue3
Version:
玛果添实UI组件库(Vue3)
16 lines (15 loc) • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.withInstall = void 0;
var withInstall = function withInstall(comp, name) {
var c = comp;
c.install = function (app) {
// @ts-ignore
app.component(name, comp);
return app;
};
return comp;
};
exports.withInstall = withInstall;