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
It would be useful to have this.$router.go({ ... }) and v-link="{ ... }" assume the current state to be the target if name or path are not specified, thus updating params and query string on the current state and triggering data hook.
This can be achieved with this.$router.go({ name: this.$route.name, ... }) and v-link="{ name: $route.name, ... }", but only for named states.