vue 2.6以后slot 的变化使用

参考: https://blog.csdn.net/xiaolinlife/article/details/89517928

 

 

beforeRouteLeave (to, from, next){
      if(to.name =="moreDishes" || to.name =="cashCouponDetail" || to.name =="mapRoutePlanning" || to.name =="toShopMealDetail"){
        from.meta.keepAlive = true;
      }else{
        from.meta.keepAlive = false;
      }
        next();
    },

 

posted @ 2021-07-20 11:42  Samuel-Leung  阅读(88)  评论(0编辑  收藏  举报