Skip to content

InfiniteScrollView-DEMO


vue
<fv-InfiniteScrollView v-model="value">
</fv-InfiniteScrollView>

Properties


PropertyTypeRequiredDefaultDescription
modelValuearrayNo[]See the InfiniteScrollView modelValue option.
batchSizenumberNo30See the InfiniteScrollView batchSize option.
offsetnumberNo100See the InfiniteScrollView offset option.
staticbooleanNofalseSee the InfiniteScrollView static option.
themestringNo'global'Theme style. Supports global, light, dark, system, and custom.
disabledbooleanNofalseSee the InfiniteScrollView disabled option.
langstringNo"global"See the InfiniteScrollView lang option.

Events


EventArgumentsDescription
lazyloadbooleanSee the component lazyload option.
init-startN/ASee the component init-start option.
init-endN/ASee the component init-end option.

Slots


  1. Default
vue
<slot :thisValue="thisValue" :dynamicValue="dynamicValue">
    <p v-for="(item, index) in dynamicValue" :key="index">{{item}}</p>
</slot>
<template v-slot:default="x">
    <p v-for="(item, index) in x.dynamicValue" :key="index">{{item}}</p>
</template>

MIT Licensed