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
I figured this out from a code comment but “Migration from Vue 2” document doesn’t seem to mention this change: the .sync event modifier is gone and replaced by v-model argument. So what was <component :prop.sync="value"> with Vue 2, should be <component v-model:prop="value"> with Vue 3.