e13cbe81b04129edbb8849407fe2e687ea020aa3a998004e245295a3de6dc6747abc4ad68f417878f65169d9c81129ff7362b963bb3f2ff4e944a50ea2d834 650 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var vue = require('vue');
  4. var tableGrid = require('../table-grid.js');
  5. function _isSlot(s) {
  6. return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !vue.isVNode(s);
  7. }
  8. const MainTable = (props, {
  9. slots
  10. }) => {
  11. const {
  12. mainTableRef,
  13. ...rest
  14. } = props;
  15. return vue.createVNode(tableGrid["default"], vue.mergeProps({
  16. "ref": mainTableRef
  17. }, rest), _isSlot(slots) ? slots : {
  18. default: () => [slots]
  19. });
  20. };
  21. var MainTable$1 = MainTable;
  22. exports["default"] = MainTable$1;
  23. //# sourceMappingURL=main-table.js.map