hasyrails / calendar-vue-original

0 stars 0 forks source link

119_not_found / エラーハンドリングを実装する #240

Closed hasyrails closed 3 years ago

hasyrails commented 3 years ago

意図しないurl遷移は全て'/'へ遷移するよう実装する

hasyrails commented 3 years ago

Vue.js入門 #08 4章 Vue Routerの高度な機能/Qiita

ホーム画面に戻す

var router = new VueRouter({
  routes: [
    // いずれにもマッチしなかった場合
    { path: '*', redirect: '/' },  // ホーム画面へ戻す
  ]
})

エラー表示する

var router = new VueRouter({
  routes: [
     { path: '/notfound', component: NotFound },
    // いずれにもマッチしなかった場合
    { path: '*', redirect: '/notfound' },
  ]
})

どちらで実装するか