Using Nested Routes in Vue.js
2021-9-12 Less than 1 minute
# Using Nested Routes in Vue.js
# What is a nested route?
A way to allow more complex user interfaces with components nested inside each other.
# When might you use a nested route? (other than the provided example)
I would use a nested route to navigate to different pages or to grab components.
# Can you pass parameters through nested routes? When might you use them?
Yes. When you use /:id at the end of a link.