Row.js 408 B

1234567891011121314151617
  1. import { createVNode as _createVNode } from "vue";
  2. import { defineComponent } from 'vue';
  3. export default defineComponent({
  4. compatConfig: {
  5. MODE: 3
  6. },
  7. name: 'ATableSummaryRow',
  8. setup(_props, _ref) {
  9. let {
  10. slots
  11. } = _ref;
  12. return () => {
  13. var _a;
  14. return _createVNode("tr", null, [(_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)]);
  15. };
  16. }
  17. });