Update DeferredContent.vue

pull/2305/head
Tuğçe Küçükoğlu 2022-03-10 13:39:15 +03:00 committed by Tuğçe Küçükoğlu
parent ebc0609501
commit 22120a9933
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ export default {
emits: ['load'],
data() {
return {
loaded: false
loaded: false
}
},
mounted() {
@ -53,7 +53,7 @@ export default {
return (winHeight >= rect.top);
}
},
load() {
load(event) {
this.loaded = true;
this.$emit('load', event);
}