From: Kerrick Long Date: Sun, 14 Apr 2024 12:43:15 +0000 (-0500) Subject: docs: use UTF-8 box drawing characters (#2201) X-Git-Tag: v4.3.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a7f8db3260874eb7031d7e17cc879342fa7203d;p=thirdparty%2Fvuejs%2Frouter.git docs: use UTF-8 box drawing characters (#2201) Use UTF-8 box drawing characters --- diff --git a/packages/docs/guide/essentials/nested-routes.md b/packages/docs/guide/essentials/nested-routes.md index ba2f490e..2525411a 100644 --- a/packages/docs/guide/essentials/nested-routes.md +++ b/packages/docs/guide/essentials/nested-routes.md @@ -8,14 +8,14 @@ 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: ``` -/user/johnny/profile /user/johnny/posts -+------------------+ +-----------------+ -| User | | User | -| +--------------+ | | +-------------+ | -| | Profile | | +------------> | | Posts | | -| | | | | | | | -| +--------------+ | | +-------------+ | -+------------------+ +-----------------+ +/user/johnny/profile /user/johnny/posts +┌──────────────────┐ ┌──────────────────┐ +│ User │ │ User │ +│ ┌──────────────┐ │ │ ┌──────────────┐ │ +│ │ Profile │ │ ●────────────▶ │ │ Posts │ │ +│ │ │ │ │ │ │ │ +│ └──────────────┘ │ │ └──────────────┘ │ +└──────────────────┘ └──────────────────┘ ``` With Vue Router, you can express this relationship using nested route configurations.