Can Nested Routes be created with more than 2 levels?
I am looking to implement a structure like this:
+--------------------+
| User |
| +----------------+ |
| | Profile | |
| | +------------+ | |
| | | About | | |
| | | +--------+ | | |
| | | | Detail | | | |
| | | +--------+ | | |
| | +------------+ | |
| +----------------+ |
+--------------------+
So on the website, it would look like this:
link: /localhost/user
Web Display:
USER
link: localhost/user/profile
Web Display:
USER
PROFILE
link: localhost/user/profile/about
Web Display:
USER
PROFILE
ABOUT
link:
localhost/user/profile/about/detail
Web Display:
USER
PROFILE
ABOUT
DETAIL
Any example code using JSFiddle would be greatly appreciated. Thank you.