1.0.7 • Published 3 years ago

water-deng v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

说明

  • 一个基于 vue 框架用于实现不定内容宽高触底加载更多瀑布流布局的解决方案
  • 注意: 使用时需要给定父容器宽高

安装

  1. npm install water-deng
  2. import Water from 'water-deng'
  3. Vue.use(Water)

示例

<div id="waterBox">
  <water
    columns="2"
    offset="5"
    noMoreText="暂无更多"
    notMoreTextColor="#aaa"
    emptyText="暂无数据"
    @bottomEvent="bottomEvent"
    total="100"
  >
    <water-cell v-for="(item, index) in waterList" :key="index">
        ...
        ...
        ...
    </water-cell>
  </water>
<div>

参数

  • columns : 列数 (默认:2)

  • offset : 元素之间间距 (默认:5)

  • noMoreText : 暂无更多提示文本 (默认:暂无更多)

  • notMoreTextColor : 暂无更多提示文本颜色 (默认:#aaa)

  • emptyText : 暂无数据提示文本 (默认:暂无数据)

  • total : 总条数

  • bottomEvent : 触底回调函数

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago