Skip to content

Instantly share code, notes, and snippets.

View herpaderpaldent's full-sized avatar

Herpaderp Aldent herpaderpaldent

View GitHub Profile
@Juhlinus
Juhlinus / InfiniteScroll.vue
Created February 13, 2020 09:46
Infinite Scroll in InertiaJS + Vue
<template>
<div>
<ul>
<li v-for="product in products_data" class="py-6">
<inertia-link :href="'products/' + product.id">{{ product.name }}</inertia-link>
</li>
</ul>
</div>
</template>