reka-ui
Version:
Vue port for Radix UI Primitives.
32 lines (28 loc) • 880 B
JavaScript
;
const vue = require('vue');
const Select_SelectGroup = require('./SelectGroup.cjs');
const Primitive_Primitive = require('../Primitive/Primitive.cjs');
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
__name: "SelectLabel",
props: {
for: {},
asChild: { type: Boolean },
as: { default: "div" }
},
setup(__props) {
const props = __props;
const groupContext = Select_SelectGroup.injectSelectGroupContext({ id: "" });
return (_ctx, _cache) => {
return vue.openBlock(), vue.createBlock(vue.unref(Primitive_Primitive.Primitive), vue.mergeProps(props, {
id: vue.unref(groupContext).id
}), {
default: vue.withCtx(() => [
vue.renderSlot(_ctx.$slots, "default")
]),
_: 3
}, 16, ["id"]);
};
}
});
exports._sfc_main = _sfc_main;
//# sourceMappingURL=SelectLabel.cjs.map