[Vuejs]-Vue router on my code not show result from component

1👍

you need to put router view then vue-router will inject the component there according to the active route.

<template>
     <h3>Hello app.vue</h3>
     <router-view></router-view>
 </template>
👤linusw

Leave a comment