vue--点击>返回按钮进行判断提示

1,103 阅读1分钟

点击返回按钮。怎么判断提示,确定返回上一个页面,取消留在当前页面

vue导航守卫beforeRouteLeave浏览器返回时,自定义弹窗提醒用户保存信息

beforeRouteLeave里面不能更改this.data的数据吗

beforeRouteLeave(to, from, next) {
      // console.log('publish---beforeRouteLeave');
      Dialog.confirm({
          title: '提示',
          message: '返回所填数据不保留哦~',
        }).then(() => {
          next(true);
        }).catch(() => {
          next(false);
        });
    },