element-plus
Version:
A Component Library for Vue 3
17 lines (14 loc) • 449 B
JavaScript
import { renderSlot, createVNode } from 'vue';
import { ElEmpty } from '../../../empty/index.mjs';
const Footer = (props, {
slots
}) => {
const defaultSlot = renderSlot(slots, "default", {}, () => [createVNode(ElEmpty, null, null)]);
return createVNode("div", {
"class": props.class,
"style": props.style
}, [defaultSlot]);
};
Footer.displayName = "ElTableV2Empty";
export { Footer as default };
//# sourceMappingURL=empty.mjs.map