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