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(); },