In vue-router, nested routes are like a namespace for your routes, where you can have multiple levels of routes inside the same route, use a base view as the main view, and have the nested routes rendered inside.
In a multi-module application, this is used to handle routes like CRUD, where you will have a base route, and the children will be the CRUD views.
In this recipe, you will learn how to create a nested route.