fix(Lazyload): directive update is removed

This commit is contained in:
chenjiahan 2020-11-30 19:31:37 +08:00
parent b6a9245740
commit 5d8b7bd7fb
2 changed files with 10 additions and 3 deletions

View File

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

View File

@ -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;
},