We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edafae0 commit bdad833Copy full SHA for bdad833
README.md
@@ -146,12 +146,12 @@ Here is what the internals of RecycleScroller look like:
146
<RecycleScroller>
147
<!-- Wrapper element with a pre-calculated total height -->
148
<wrapper
149
- :style="{ height }"
+ :style="{ height: computedTotalHeight + 'px' }"
150
>
151
<!-- Each view is translated to the computed position -->
152
<view
153
v-for="view of pool"
154
- :style="{ top: 'translateY(' + view.computedTop + 'px)' }"
+ :style="{ transform: 'translateY(' + view.computedTop + 'px)' }"
155
156
<!-- Your elements will be rendered here -->
157
<slot
0 commit comments