vue 使用路由守卫监听返回键,控制页面跳转
beforeRouteLeave(to, from, next) {// 导航离开该组件的对应路由时调用// 可以访问组件实例 `this`if(!this.isPublish){this.confirmVisible=truenext(false)//不放行}el...
·
beforeRouteLeave(to, from, next) {
// 导航离开该组件的对应路由时调用
// 可以访问组件实例 `this`
if(!this.isPublish){
this.confirmVisible=true
next(false)//不放行
}else {
next()
}
},
更多推荐
已为社区贡献14条内容
所有评论(0)