Basic config 最基本的寫法就是在 src/router/index.ts 的 routes 內設定像這樣 path 是設定路由,name 如果你沒有要用路由傳參,不寫也沒關係,component 是對應到哪個你寫的 vue 頁面 router-link 跟 <a></a> 很像,用法是像 <router-link to="/">Home</router-link> 設定 to="路由" 就可以在頁面上點這個連結進入想去的頁面 Nested Routes