[Vuejs]-How to redirect a page in VueJS with Vue-Router

0👍

Since you not including Index.vue file, I think you forgot the <router-view/>

Reference

// Index.vue
<template>
  <router-view />
</template>

<script>
export default {
  name: "Index",
}
</script>

Leave a comment