We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c72ad20 commit 1a28db6Copy full SHA for 1a28db6
e2e/docs/router/navigate-by-link.md
@@ -14,7 +14,7 @@
14
15
## HTML Links
16
17
-<a href="/?home=true" class="home-with-query">Home</a>
18
-<a href="/?home=true#home" class="home-with-query-and-hash">Home</a>
19
-<a href="/404.html#404" class="not-found-with-hash">404</a>
20
-<a href="/404.html#404?notFound=true" class="not-found-with-hash-and-query">404</a>
+<a :href="$withBase('/?home=true')" class="home-with-query">Home</a>
+<a :href="$withBase('/?home=true#home')" class="home-with-query-and-hash">Home</a>
+<a :href="$withBase('/404.html#404')" class="not-found-with-hash">404</a>
+<a :href="$withBase('/404.html#404?notFound=true')" class="not-found-with-hash-and-query">404</a>
0 commit comments