You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2025. It is now read-only.
#261 and #262 introduced a breaking feature to the reactivity of metaInfo
For example, this component incrementally updates the title prop:
<script>exportdefault{name: 'app',metaInfo(){return{title: this.title,};},data(){return{increment: 0,title: 'test',};},mounted(){setInterval(()=>{// The title will *not* reactively update with 1.5.4this.title=`title-${this.increment++}`;},500);},}</script>
In v1.5.4 it doesn't react to any of the changes like v1.5.3 does.
v1.5.3
v1.5.4 (this is a gif)
I created a test project to demonstrate the issue: