You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
import { createVNode } from 'vue';
|
|
import { ElEmpty } from '../../../empty/index.mjs';
|
|
|
|
const Footer = (props, {
|
|
slots
|
|
}) => {
|
|
return createVNode("div", {
|
|
"class": props.class,
|
|
"style": props.style
|
|
}, [slots.default ? slots.default() : createVNode(ElEmpty, null, null)]);
|
|
};
|
|
Footer.displayName = "ElTableV2Empty";
|
|
|
|
export { Footer as default };
|
|
//# sourceMappingURL=empty.mjs.map
|
|
|