PLDaily / vue2-waterfall

😁 An AutoHeight Waterfall Component For Vue2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

懒加载图片无法正常工作

StringKe opened this issue · comments

在已知图片宽高是否可以使用懒加载?

指定高度可以结合 vue-lazyload 使用

<Waterfall>
  <WaterfallItem v-for="(src, index) in dataArr" :key="index" class="col-lg-3 col-md-4 col-sm-6 col-xs-12 item">
    <img v-lazy="src" :height="index * 50 + 100">
  </WaterfallItem>
</Waterfall>