The static or unmount props on ComboboxOptions not working. #1324
-
What package within Headless UI are you using? @headlessui/vue What version of that package are you using? v1.5.0 What browser are you using? Chrome v100 Reproduction URL https://codesandbox.io/s/priceless-napier-5u7vuy?file=/src/components/Combobox.vue Describe your issue The static or unmount props on ComboboxOptions does not seem to do anything. See the codesandbox with both props, looks like a bug but maybe I am missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I dug some more and my specific issue was because I was using the In summary the |
Beta Was this translation helpful? Give feedback.
I dug some more and my specific issue was because I was using the
TransitionRoot
component from headlessui. However, theTransitionRoot
works withListboxOptions
but notComboboxOptions
, codesandbox is updated to reflect that. I don't know if that's the expected behavior or not.In summary the
static
prop works with the vue defaulttransition
, which solves my issue.