children117cl
2021-06-25 b61d3353ae963c0430258230649951e423fbdbee
提交 | 用户 | age
ad3cc5 1 /**
L 2  * 页面通用 keepAlive 处理
3  *
4  * 通过页面重置功能,实现刷新功能
5  */
6
7 export default {
8   // keep-alive用
9   activated() {
10     // 根据isBack进行刷新
11     if (!this.$route.meta.isBack) {
12       console.log('初始化')
13       this.init && this.init()
14     } else {
15       console.log('返回')
16       this.regInit && this.regInit()
17     }
18   }
19 }