Skip to content

Commit 7a7f8db

Browse files
authored
docs: use UTF-8 box drawing characters (#2201)
Use UTF-8 box drawing characters
1 parent 7b6dcae commit 7a7f8db

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

β€Žpackages/docs/guide/essentials/nested-routes.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
Some applications' UIs are composed of components that are nested multiple levels deep. In this case, it is very common that the segments of a URL correspond to a certain structure of nested components, for example:
99

1010
```
11-
/user/johnny/profile /user/johnny/posts
12-
+------------------+ +-----------------+
13-
| User | | User |
14-
| +--------------+ | | +-------------+ |
15-
| | Profile | | +------------> | | Posts | |
16-
| | | | | | | |
17-
| +--------------+ | | +-------------+ |
18-
+------------------+ +-----------------+
11+
/user/johnny/profile /user/johnny/posts
12+
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
13+
β”‚ User β”‚ β”‚ User β”‚
14+
β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚
15+
β”‚ β”‚ Profile β”‚ β”‚ ●────────────▢ β”‚ β”‚ Posts β”‚ β”‚
16+
β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚
17+
β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚
18+
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
1919
```
2020

2121
With Vue Router, you can express this relationship using nested route configurations.

0 commit comments

Comments
Β (0)