From 5d8b7bd7fbaefa1c9343a77daed165a01b6172d9 Mon Sep 17 00:00:00 2001 From: chenjiahan Date: Mon, 30 Nov 2020 19:31:37 +0800 Subject: [PATCH] fix(Lazyload): directive update is removed --- packages/vant-lazyload/src/index.js | 3 +-- packages/vant-lazyload/src/lazy-component.js | 10 +++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/packages/vant-lazyload/src/index.js b/packages/vant-lazyload/src/index.js index a612b7b5c..9715734a6 100644 --- a/packages/vant-lazyload/src/index.js +++ b/packages/vant-lazyload/src/index.js @@ -26,8 +26,7 @@ export const Lazyload = { app.directive('lazy', { beforeMount: lazy.add.bind(lazy), - update: lazy.update.bind(lazy), - updated: lazy.lazyLoadHandler.bind(lazy), + updated: lazy.update.bind(lazy), unmounted: lazy.remove.bind(lazy), }); diff --git a/packages/vant-lazyload/src/lazy-component.js b/packages/vant-lazyload/src/lazy-component.js index d01683891..66a58fd87 100644 --- a/packages/vant-lazyload/src/lazy-component.js +++ b/packages/vant-lazyload/src/lazy-component.js @@ -9,14 +9,16 @@ export default (lazy) => { default: 'div', }, }, + emits: ['show'], + render() { return h( this.tag, - null, this.show && this.$slots.default ? this.$slots.default() : null ); }, + data() { return { el: null, @@ -27,18 +29,22 @@ export default (lazy) => { show: false, }; }, + mounted() { this.el = this.$el; lazy.addLazyBox(this); lazy.lazyLoadHandler(); }, + beforeUnmount() { lazy.removeComponent(this); }, + methods: { getRect() { this.rect = this.$el.getBoundingClientRect(); }, + checkInView() { this.getRect(); return ( @@ -49,11 +55,13 @@ export default (lazy) => { this.rect.right > 0 ); }, + load() { this.show = true; this.state.loaded = true; this.$emit('show', this); }, + destroy() { return this.$destroy; },