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
For "hash" being the default mode, shouldn't the generated anchors generate hashed URLs? (For cases where one would want to copy URL or open link in a new tab/window)
The following router-link:
<router-linkto="/example">Example</router-link>
Generates:
<ahref="/example">Example</a>
Expected:
<ahref="#/example">Example</a>
Clicking on the generated (non-hashed) anchor seems to work, it changes the URL to the hashed version of the URL.
VincentGarreau, robinlambert, lmk123, Phyks, damienix and 2 more