码迷,mamicode.com
首页 > 其他好文 > 详细

Vue 离开页面时的校验-mixin-beforeRouteLeave

时间:2020-07-23 15:41:50      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:logic   exp   imp   mixin   for   efault   使用   catch   提示   

一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性

一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性

一定要看下函数前的注释, 需要在使用的页面定义【needCheckFlag】data属性

/**
 * what for: check when leave
 * how to use:
 * step-1: import routeLeaveCheck from ‘@/mixins/router/leave-check‘
 * step-2: mixins: [routeLeaveCheck],
 * step-3: ???
 *    define 【 needCheckFlag 】 in your own vue file(default value is true)
 *    sometime you dont‘ need checking when leave this page(click button, router-link etc..),
 *    you can change the value to be "false" before such kind operations
 */
export default {
  beforeRouteLeave(to, from, next) {
    if (this.needCheckFlag) {
      this.$confirm(‘确定离开此页面?‘, ‘提示‘, {
        confirmButtonText: ‘确定‘,
        cancelButtonText: ‘取消‘,
        type: ‘warning‘
      }).then(() => { 
        // some logic
        next() 
      })
        .catch(() => { next(false) })
    } else {
      next()
    }
  }
}

Vue 离开页面时的校验-mixin-beforeRouteLeave

标签:logic   exp   imp   mixin   for   efault   使用   catch   提示   

原文地址:https://www.cnblogs.com/leslie1943/p/13364835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!