[V2-Vue] Infinite Scroll

Hello, i have problem with infinite scroll using vue , looking for documentation , nothing.

here my code :

<f7-list media-list>
        <f7-list-item
        v-for="prod in listproduct" 
        :key="prod.idproduct"
        link="/"
        :title="prod.product_name"
        subtitle="Item Subtitle"
        text="Text"
        after="Read more">
        <img v-if="prod.image == '' || prod.image == null" src="bw.png" slot="media" width="90">
        <img v-else :src="prod.image" slot="media" width="90">
        </f7-list-item>
 </f7-list>

@nolimits4web , can u help ?

1 Like