Vue Routerの高度なナビゲーション制御と動的ルーティング
ナビゲーションガードの実装
グローバルガード
const router = createRouter({
history: createWebHistory(),
routes: [
{ path: '/', name: 'top', component: TopView },
{ path: '/profile', name: 'profile', component: ProfileView }
]
})
// グローバル前置ガード
router.beforeEach((destination, origin) => {
if (destination.name === 'profil ...
6月18日 22:16 投稿