Skip to content

Commit c5baa4e

Browse files
committed
Merge branch 'resolve-route' into route-option
2 parents d26921e + 1a28db6 commit c5baa4e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

e2e/docs/router/navigate-by-link.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121

2222
## HTML Full Links
2323

24-
<a href="/?home=true" class="home-with-query">Home</a>
25-
<a href="/?home=true#home" class="home-with-query-and-hash">Home</a>
26-
<a href="/404.html#404" class="not-found-with-hash">404</a>
27-
<a href="/404.html#404?notFound=true" class="not-found-with-hash-and-query">404</a>
24+
<a :href="$withBase('/?home=true')" class="home-with-query">Home</a>
25+
<a :href="$withBase('/?home=true#home')" class="home-with-query-and-hash">Home</a>
26+
<a :href="$withBase('/404.html#404')" class="not-found-with-hash">404</a>
27+
<a :href="$withBase('/404.html#404?notFound=true')" class="not-found-with-hash-and-query">404</a>
2828

2929
## HTML Clean Links
3030

31-
<a href="/?home=true" class="home-with-query">Home</a>
32-
<a href="/?home=true#home" class="home-with-query-and-hash">Home</a>
33-
<a href="/404#404" class="not-found-with-hash">404</a>
34-
<a href="/404#404?notFound=true" class="not-found-with-hash-and-query">404</a>
31+
<a :href="$withBase('/?home=true')" class="home-with-query">Home</a>
32+
<a :href="$withBase('/?home=true#home')" class="home-with-query-and-hash">Home</a>
33+
<a :href="$withBase('/404#404')" class="not-found-with-hash">404</a>
34+
<a :href="$withBase('/404#404?notFound=true')" class="not-found-with-hash-and-query">404</a>

0 commit comments

Comments
 (0)