[Vuejs]-VUE Routes – Nested routes do not render

3👍

According to the nested route docs, to get nested routes working you need to add a <router-view></router-view> to the Parent component that the nested routes will render in (Profile.vue). I don’t see a <router-view></router-view> in your profile page, it should look like:

<template>
  <div>
    Profile page.
    <router-view></router-view>
  </div>
</template>

Leave a comment