-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
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
v1.5.4 breaks metaInfo
reactivity
#269
Comments
I encountered the same problem |
Thanks for the detailed issue! We will look into it |
same problem |
I've got this issue too. After upgrading a Nuxt project to v2.0 the page titles stopped updating. Downgrading has fixed the issue for the time being Having looked at the recent commit history I think it must be something to do with this. My guess is that by merging the nested options the original objects/prototypes/references are lost. I think this breaks the reactivity because AFAIK reactivity is basically monkey patching set/get methods. |
Thanks all! Resolved with |
#261 and #262 introduced a breaking feature to the reactivity of
metaInfo
For example, this component incrementally updates the
title
prop:In
v1.5.4
it doesn't react to any of the changes likev1.5.3
does.v1.5.3
v1.5.4
(this is a gif)I created a test project to demonstrate the issue:
v1.5.4
https://github.com/kchung/vue-meta-issuev1.5.3
https://github.com/kchung/vue-meta-issue/tree/1.5.3You can test by running
npm run serve
after runningnpm install
The text was updated successfully, but these errors were encountered: