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.5.13 Vue Version: 3.4.21 Browsers: Google Chrome OS: Mac OS 10.15.7
The button link is reactive and points to the current computed href.
The href of the button is the initial value.
https://github.com/realityfilter/bugreport-vuetify-nonreactive-links
The culprit is in my opinion the following line:
vuetify/packages/vuetify/src/composables/router.tsx
Line 68 in 46eaff3
Changing to
const linkProps = computed(() => ({ ...props, to: toRef(() => props.to || {}) }));
keeps reactivity.
The text was updated successfully, but these errors were encountered:
f15b57b
johnleider
No branches or pull requests
Environment
Vuetify Version: 3.5.13
Vue Version: 3.4.21
Browsers: Google Chrome
OS: Mac OS 10.15.7
Steps to reproduce
Expected Behavior
The button link is reactive and points to the current computed href.
Actual Behavior
The href of the button is the initial value.
Reproduction Link
https://github.com/realityfilter/bugreport-vuetify-nonreactive-links
Other comments
The culprit is in my opinion the following line:
vuetify/packages/vuetify/src/composables/router.tsx
Line 68 in 46eaff3
Changing to
keeps reactivity.
The text was updated successfully, but these errors were encountered: