1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| 'use strict';
|
| Object.defineProperty(exports, '__esModule', { value: true });
|
| var vue = require('vue');
| var index = require('../../../empty/index.js');
|
| const Footer = (props, {
| slots
| }) => {
| return vue.createVNode("div", {
| "class": props.class,
| "style": props.style
| }, [slots.default ? slots.default() : vue.createVNode(index.ElEmpty, null, null)]);
| };
| Footer.displayName = "ElTableV2Empty";
|
| exports["default"] = Footer;
| //# sourceMappingURL=empty.js.map
|
|