beforeRouteLeave(to, from, next) {
        // 导航离开该组件的对应路由时调用
        // 可以访问组件实例 `this`
        if(!this.isPublish){
            this.confirmVisible=true
            next(false)//不放行
        }else {
            next()
        }

    },
Logo

前往低代码交流专区

更多推荐