@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
16 lines (15 loc) • 371 B
JavaScript
import { defineComponent, createVNode } from "vue";
var Tbody = defineComponent({
name: "Tbody",
setup(_, {
slots
}) {
return () => {
var _a, _b;
return createVNode((_b = (_a = slots.tbody) == null ? void 0 : _a.call(slots)[0]) != null ? _b : "tbody", null, {
default: slots.default
});
};
}
});
export { Tbody as default };