0👍
✅
Since you not including Index.vue
file, I think you forgot the <router-view/>
// Index.vue
<template>
<router-view />
</template>
<script>
export default {
name: "Index",
}
</script>
Source:stackexchange.com