Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新しい Inertia Laravel スタックの使用 – ルート変更をどのように監視しますか?
私は次のような非常に単純なことをしようとしています:
watch: { route () { console.log('You changed route') } }
これに関する情報は見つかりませんでした。
次のこともできます。
watch: { '$page.url': function (newUrl, oldUrl) { console.log(newUrl) } }