#vue3 `root.$route`を監視する。 ```ts watch( () => root.$route, async (current, previous) => { if (previous.path === '/login') { await handler() } } ) ```