ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
17 lines (16 loc) • 357 B
JavaScript
import t from "./Sender.mjs";
import m from "./SenderHeader.mjs";
import o from "./SenderSwitch.mjs";
const e = Object.assign(t, {
Header: m,
Switch: o
});
e.install = function(n) {
return n.component(e.name, e), n.component(m.name, m), n.component(o.name, o), n;
};
export {
e as Sender,
m as SenderHeader,
o as SenderSwitch,
e as default
};