[Vuejs]-Vue 2: vue-router-3.x not redirecting/pushing from App.vue

0👍

The component from the current route will automatically render in <router-view></router-view>

App.vue:

<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

Check the docs

Leave a comment