reka-ui
Version:
Vue port for Radix UI Primitives.
34 lines (31 loc) • 1.08 kB
JavaScript
import { defineComponent, onMounted, onUnmounted, createBlock, openBlock, unref, mergeProps, withCtx, renderSlot } from 'vue';
import { u as useForwardExpose } from '../shared/useForwardExpose.js';
import { c as context } from './DismissableLayer.js';
import { P as Primitive } from '../Primitive/Primitive.js';
const _sfc_main = /* @__PURE__ */ defineComponent({
__name: "DismissableLayerBranch",
props: {
asChild: { type: Boolean },
as: {}
},
setup(__props) {
const props = __props;
const { forwardRef, currentElement } = useForwardExpose();
onMounted(() => {
context.branches.add(currentElement.value);
});
onUnmounted(() => {
context.branches.delete(currentElement.value);
});
return (_ctx, _cache) => {
return openBlock(), createBlock(unref(Primitive), mergeProps({ ref: unref(forwardRef) }, props), {
default: withCtx(() => [
renderSlot(_ctx.$slots, "default")
]),
_: 3
}, 16);
};
}
});
export { _sfc_main as _ };
//# sourceMappingURL=DismissableLayerBranch.js.map