Vue Version 2.6.10
To view the reproduction, please click on the link provided.
<router-link to="/a"><a name="/a">[a]</a></router-link>
<router-link to="/b"><a name="/b">[b]</a></router-link>
<router-link to="/c"><a name="/c">[c]</a></router-link>
<transition :name="transitionName">
<router-view></router-view>
</transition>
This code contains three different routes. When switching from A to B, the router links appear to move instead of remaining still as expected.
Despite not being placed within the transition tag, the router links are animated in the browser. This behavior is unexpected and may need further investigation.
I have attempted various methods to simplify the reproduction scenario such as using different transition effects or removing certain elements, but the issue persists only when switching between specific route pairs.