跳转其他路由:beforeRouteLeave 中判断关闭浏览器窗口:编辑组件mounted的时候注册onbeforeunload事件离开组件的时候销毁cb 是你传入vue 的方法 注册: window.onbeforeunload = function(cb) { cb() } 销毁: window.onbeforeunload = function(){}
跳转其他路由:
beforeRouteLeave 中判断
关闭浏览器窗口:
编辑组件mounted的时候注册onbeforeunload事件
离开组件的时候销毁
cb 是你传入vue 的方法