My Nuxt.js application has several nested routes.
.
├── index
│ ├── _choice
│ │ ├── city
│ │ │ ├── index.vue
│ │ │ ├── _zipCode
│ │ │ │ ├── index.vue
│ │ │ │ ├── street
│ │ │ │ │ ├── index.vue
│ │ │ │ │ └── _street.vue
│ │ │ │ └── street.vue
│ │ │ └── _zipCode.vue
│ │ ├── city.vue
│ │ ├── city.vue~
│ │ └── index.vue
│ ├── _choice.vue
│ └── index.vue
├── index.vue
└── index.vue~
When I start the server (yarn run dev
), I want it to directly navigate to http://localhost:3000/1
instead of http://localhost:3000/
. How can I achieve this?
Please note that in this scenario, "1" corresponds to the path "/:choice
"