We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nuxt
3.14.1592
<script setup lang="ts"> const model = ref(true) const yesNoList = [ { label: '-', value: null }, { label: 'No', value: false }, { label: 'Yes', value: true } ] </script> <template> <USelect v-model="model" :items="yesNoList" class="w-24" /> </template>
On select item model value converts from null to "", true to "true" etc. https://skr.sh/vTBGJYo8U6P
null
""
true
"true"
The text was updated successfully, but these errors were encountered:
I'm not able to reproduce the issue using the latest version of the devtools and Nuxt UI: https://codesandbox.io/p/devbox/nuxt-ui3-forked-ghcdsd
Can you confirm the issue is solved or share a reproduction?
Sorry, something went wrong.
I think this is an upstream issue in Reka UI, see: unovue/radix-vue#1517
I have the same issue in v3-alpha.10 and can confirm that this issue does not appear, if the USelect is used outside of a Form.
USelect
Form
romhml
No branches or pull requests
Environment
Is this bug related to Nuxt or Vue?
Nuxt
Version
3.14.1592
Reproduction
Description
On select item model value converts from
null
to""
,true
to"true"
etc.https://skr.sh/vTBGJYo8U6P
The text was updated successfully, but these errors were encountered: