Thursday, September 4, 2025
HomeLanguagesJavascriptv-for Directive in Vue.js

v-for Directive in Vue.js

v-for directive is a Vue.js directive used to loop over a data usually an array or object. First, we will create a div element with id as app and let’s apply the v-for directive to an element with data. Now we will create this data by initializing a Vue instance with the data attribute containing the value.

Syntax:

v-for="data in datas"

Parameters: This function accepts data which is either an array or object over which we will loop over.

Example: This example uses Vue.js to loop over an array with v-for.




<!DOCTYPE html>
<html>
  
<head>
    <title>
        VueJS | v-for directive
    </title>
  
    <!-- Load Vuejs -->
    <script src=
    </script>
</head>
  
<body>
    <div style="text-align: center;
        width: 600px;">
          
        <h1 style="color: green;">
            neveropen
        </h1>
          
        <b>
            VueJS | v-for directive
        </b>
    </div>
  
    <div id="canvas" style=
        "border:1px solid #000000;
        width: 600px;height: 200px;">
  
        <div id="app">
            <h2 v-for="data in datas">
                {{data}}
            </h2>
        </div>
    </div>
  
    <script>
        var app = new Vue({
            el: '#app',
            data: {
                datas: [
                    'Hello', 
                    'World', 
                    'neveropen'
                ]
            }
        })
    </script>
</body>
  
</html>


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS