How to Load More Data on a Button Click Using Vue js 3

11 months ago admin Vuejs

In today's lesson, we will see how to load more data on a button click using vue js 3, let's assume that we have an e-commerce website and we want to display only two products and the user can load more products on a button click, so let's see how we can do that. 


Load more data on a button click

So in the example below, we display only 2 products from the array, and once the user clicks on the button the method load more is triggered and the products to show are incremented by 2.

                                                        
                                                                                                                        
<template>
    <div className='row my-4'>
        <div class="col-md-4 mb-2" v-for="product in data.products.slice(0, data.productToShow)" :key="product.id">
            <div class="card" style="width: '18rem'">
                <img :src="product.image" class="card-img-top" alt="..." />
                <div class="card-body">
                    <h5 class="card-title">{{product.name}}</h5>
                    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
                    <button 
                        class="btn btn-primary">
                        <i class="bi bi-cart-check"></i> add to cart
                    </button>
                </div>
            </div>
        </div>  
        <div class="col-md-12 d-flex justify-content-center my-5">
            <button v-if="data.productToShow < data.products.length"
                @click="loadMoreProducts"
                class="btn btn-sm btn-danger">
                Load more
            </button>
        </div>
    </div>
</template>

<script setup>
    import { reactive } from 'vue';

    const data = reactive({
        products: [
            {
                id: 1,
                name: 'Iphone 12',
                price: 700,
                image: 'https://cdn.pixabay.com/photo/2016/11/20/08/33/camera-1842202__480.jpg'
            },
            {
                id: 2,
                name: 'Samsung s10',
                price: 400,
                image: 'https://cdn.pixabay.com/photo/2016/03/27/19/43/samsung-1283938__340.jpg'
            },
            {
                id: 3,
                name: 'Samsung Tv',
                price: 1200,
                image: 'https://cdn.pixabay.com/photo/2019/06/30/18/19/tv-4308538__480.jpg'
            },
            {
                id: 4,
                name: 'Huwawei Mate',
                price: 900,
                image: 'https://cdn.pixabay.com/photo/2017/08/11/14/19/honor-2631271__340.jpg'
            }
        ],
        productToShow: 2
    });

    const loadMoreProducts = () => {
        if(data.productToShow >= data.products.length){
            return;
        }else{
            data.productToShow = data.productToShow + 2;
        }
    }
</script>

<style>
</style>

Related Tuorials

How to Get URL Query Params in Vue 3 Composition API

In this lesson, we will see how to get URL query params in Vue 3 composition API, let's assume that...


How to Use Vue js 3 to Generate Random Passwords

In this tutorial, we will see how to use Vue js 3 to generate random passwords, so our application w...


How to Display Images from Laravel Public Folder in a Vue Component

In this lesson, we are going to see how to display images from Laravel public folder in a Vue compon...


Create a Custom 404 Component using Vuejs 3

In today's lesson, we are going to see how to redirect a user to a custom 404 Vue Component if a rou...


How to Add an Auth Middleware with Vue-router

In this lesson we are going to see how to make an auth middleware using vue-router, the middleware w...


Shopping Cart Using Vue js 3 Composition API and Pinia Part 2

In the second part of this project, we will add the home component, and display the products, we wil...


Shopping Cart Using Vue js 3 Composition API and Pinia Part 1

In today's tutorial, we are going to create a shopping cart using Vue js 3 composition API and pinia...


How to Get Query Params in Vue.js 3 Composition API

In this lesson, we are going to see how to get query params using Vue js 3 composition API, let's as...


How to Update an Object's value in Array in Vue js 3

Let's assume that we are working in a shopping cart with Vue js 3, the user adds items to the cart,...


How to Check Vue js Project Version with Code?

In today's lesson, we are going to solve the problem of getting the current version of a Vue js proj...