| 1234567891011121314151617 |
- import { createVNode as _createVNode } from "vue";
- import { defineComponent } from 'vue';
- export default defineComponent({
- compatConfig: {
- MODE: 3
- },
- name: 'ATableSummaryRow',
- setup(_props, _ref) {
- let {
- slots
- } = _ref;
- return () => {
- var _a;
- return _createVNode("tr", null, [(_a = slots.default) === null || _a === void 0 ? void 0 : _a.call(slots)]);
- };
- }
- });
|