天天看点

vue keep-alive缓存后,进入缓存页需要再次更新数据

在keep-alive时

beforeRouteEnter(to, from, next){
    next(vm=>{
        console.log(vm)
        // 每次进入路由执行
        vm.getData()
    })
},
mounted: function () {
    // 只执行一次的方法
    this.getData()
},