我看了一下vue router文件
https://router.vuejs.org/guide/advanced/navigation-guards.html#in-component-guards
想不透
假設按下 submit 時可否不要觸發 beforeRouteLeave
(我是直接寫在該元件~)
發現按下 submit 後都會再問一次要不要離開
要怎麼寫才正確呢
假設按下 submit 時可否不要觸發 beforeRouteLeave
你不要寫他
就不會觸發了阿...
沒看到你的 code 不知道是啥情況
總之
beforeRouteLeave (to, from, next) {
// called when the route that renders this component is about to
// be navigated away from.
// has access to `this` component instance.
}
to
可以拿到你要去的 route 相關資訊from
可以拿到你來自的 route 相關資訊
想辦法用這些寫出你預期的結果吧