Browse Source

fix:修复InfiniteLoading组件在用keep-alive缓存时候没移除监听事件问题

songchenglin3 6 years ago
parent
commit
c05a9cb759
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/packages/infiniteloading/infiniteloading.vue

+ 4 - 0
src/packages/infiniteloading/infiniteloading.vue

@@ -136,6 +136,10 @@ export default {
         }
     },
 
+    activated() {
+        this.scrollListener();
+    },
+
     deactivated() {
         window.removeEventListener('scroll', this.handleScroll, false);
         window.removeEventListener('resize', this.handleScroll, false);