Closed
Description
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-link to="/example">Example</router-link>
Generates:
<a href="/example">Example</a>
Expected:
<a href="#/example">Example</a>
Clicking on the generated (non-hashed) anchor seems to work, it changes the URL to the hashed version of the URL.