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();
    },
原文地址:https://www.cnblogs.com/Samuel-Leung/p/15034112.html