fix: recycle scroller glitches (#174)

This commit is contained in:
Guillaume Chau 2022-11-27 14:12:25 +01:00 committed by GitHub
parent 6acc838850
commit d97beabf4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 2 deletions

View file

@ -19,6 +19,7 @@ export default defineComponent({
onMounted(() => {
const img = document.createElement('img')
isLoaded.value = img.complete
img.onload = () => {
isLoaded.value = true
}