Skip to content

Commit 39607a9

Browse files
author
Guillaume Chau
committed
fix: eslint errors
1 parent aab588f commit 39607a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/RecycleList.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<template>
22
<div
3-
class="recycle-list"
3+
v-observe-visibility="handleVisibilityChange"
44
:class="cssClass"
5+
class="recycle-list"
56
@scroll.passive="handleScroll"
6-
v-observe-visibility="handleVisibilityChange"
77
>
88
<div
99
ref="wrapper"
10-
class="item-wrapper"
1110
:style="{ height: totalHeight + 'px' }"
11+
class="item-wrapper"
1212
>
1313
<div
1414
v-for="view of pool"
1515
:key="view.nr.id"
16-
class="item-view"
1716
:style="{ transform: 'translateY(' + view.top + 'px)' }"
17+
class="item-view"
1818
>
1919
<slot
2020
:item="view.item"

0 commit comments

Comments
 (0)