reka-ui
Version:
Vue port for Radix UI Primitives.
25 lines (22 loc) • 719 B
JavaScript
import { defineComponent, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
import { P as Primitive } from '../Primitive/Primitive.js';
const _sfc_main = /* @__PURE__ */ defineComponent({
__name: "RangeCalendarGridHead",
props: {
asChild: { type: Boolean },
as: { default: "thead" }
},
setup(__props) {
const props = __props;
return (_ctx, _cache) => {
return openBlock(), createBlock(unref(Primitive), mergeProps(props, { "aria-hidden": "true" }), {
default: withCtx(() => [
renderSlot(_ctx.$slots, "default")
]),
_: 3
}, 16);
};
}
});
export { _sfc_main as _ };
//# sourceMappingURL=RangeCalendarGridHead.js.map