Sebastian Bayer
Sebastian Bayer
@danielroe sorry to revive this topic, but I believe https://github.com/nuxt/test-utils/pull/1025 in 3.15.0 only fixed it for props, not for data properties. I still get the same error message with a...
> Does this work in the latest release? 🙏 I can confirm this is now working in 3.17.1, but I have to define that property in Vue Options API in...
Still the same issue with a prop named `results` with `mountSuspended` as well.
Props named `results` or `url` still broken in 3.19.1
Sorry @oleksandr-danylchenko, it should be accessible now.
@lozinsky thanks for the explanation and the react demo. I forked my Vue example again, removed the `whileElementsMounted` property (and updated to `v-show`). https://codesandbox.io/p/sandbox/floating-ui-vue-demo-forked-zzxsp9?file=%2Fsrc%2FApp.vue Now the dropdown is only positioned...
I understand. The context is that I was thinking about creating a PR for [bootstrap-vue-next](https://github.com/bootstrap-vue-next/bootstrap-vue-next) where the authors are using Floating UI for positioning of the `BDropdown`. https://github.com/bootstrap-vue-next/bootstrap-vue-next/blob/main/packages/bootstrap-vue-next/src/components/BDropdown/BDropdown.vue The `show`...
I think this PR needs an addition for `BDropdown`, where the `shown` Event is fired before the `` Element is positioned asynchronously by Floating UI. This leads to problems when...
I see, but could binding to data attributes be a solution instead? If using this package makes the markup invalid, that could be a significant factor in whether people choose...
@xvaara thanks for the infos, I did not know `true-value` and `false-value` are Vue-specific attributes, but could then find more about it in the documentation: https://vuejs.org/guide/essentials/forms#checkbox-1 I created an issue...