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
Vuetify Version: 3.6.4 Vue Version: 3.4.27 Browsers: Chrome 124.0.0.0 OS: Mac OS 10.15.7
Remove the mobile="null" prop value from the data table and wait for the demo to reload
mobile="null"
The table should stay in mobile mode, because mobile="null" is the default value for this prop in vuetify.js
vuetify.js
The table switches to desktop mode (presumably) because default props with a value of null don't work
https://play.vuetifyjs.com/#...
I tried setting the default value to undefined instead of null, but that also didn't work.
undefined
null
The text was updated successfully, but these errors were encountered:
fix(defaults): allow null component and global values (#19842)
9342288
fixes #19783
KaelWD
Successfully merging a pull request may close this issue.
Environment
Vuetify Version: 3.6.4
Vue Version: 3.4.27
Browsers: Chrome 124.0.0.0
OS: Mac OS 10.15.7
Steps to reproduce
Remove the
mobile="null"
prop value from the data table and wait for the demo to reloadExpected Behavior
The table should stay in mobile mode, because
mobile="null"
is the default value for this prop invuetify.js
Actual Behavior
The table switches to desktop mode (presumably) because default props with a value of null don't work
Reproduction Link
https://play.vuetifyjs.com/#...
Comment
I tried setting the default value to
undefined
instead ofnull
, but that also didn't work.The text was updated successfully, but these errors were encountered: