mint-ui MessageBox 浏览器返回上一页,一直显示,没有关闭解决方法

在弹框的页面增加如下代码:
1、离开页面钩子
2、this.$messagebox 是MessageBox 实例,直接调用close 方法即可
beforeRouteLeave(to,form,next){
    this.$messagebox.close();
    next();
},

猜你喜欢

转载自blog.csdn.net/lizhen_software/article/details/104940055