is that posible to create Nested Routes more then 2?
i want to create something like this:
+--------------------+
| User |
| +----------------+ |
| | Profile | |
| | +------------+ | |
| | | About | | |
| | | +--------+ | | |
| | | | Detail | | | |
| | | +--------+ | | |
| | +------------+ | |
| +----------------+ |
+--------------------+
so in the web will be 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 with jsfiddle will be very appreciated, thanks.