Anonymous Loops
To loop over HTML elements in Vue, you utilize the v-for
loop directive. When Vue renders the component, it will iterate the HTML element you have added the directive to in order to use the data being parsed into the directive. Anonymous loops can be performed using this directive, where you can define a number X and the loop will iterate that many times, which can be handy in situations where you can more strictly control how many loops you iterate on or for placeholder content. All loops require an iterator :key
. When the key or the content bound to the key changes, Vue knows that it needs to reload the content inside the loop. If you have multiple loops in one component, randomize the key with extra characters or context-related strings to avoid :key
duplication conflicts.
Anonymous loops are demonstrated below; note that you can use quotation marks or backticks (`) to describe strings:
          <div v-for="n in 2" :key="'loop-1-' + n">     {{ n }} </div> <!-- Backticks --> <div v-for="n in 5" :key="`loop-2-${n}`">     {{ n }} </div>
The output of the preceding code should look as follows.
Understanding loops is key to not only working with Vue but also with JavaScript in general. Now that we have covered how to handle loops by using the v-for
syntax and the importance of binding the :key
property to add reactivity to the content being looped, we will utilize this function in the next exercise.
Exercise 1.08: Using v-for to Loop Over an Array of Strings
In this exercise, we are going to perform an anonymous loop using Vue's v-for
directive. This will be familiar to those who have used for
or foreach
loops in JavaScript before.
To access the code files for this exercise, refer to https://packt.live/390SO1J.
Perform the following steps to complete the exercise:
- Open a command-line terminal, navigate into the
Exercise1.08
folder, and run the following commands in order:> cd Exercise1.08/ > code . > yarn > yarn serve
Go to
https://localhost:8080
. - Compose the following syntax inside of
Exercise1-08.vue
by adding an<h1>
title to your component and a<ul>
element with an<li>
tag which will have thev-for
directive, which has the value ofn
as5
:Exercise1-08.vue
1Â <template> 2Â Â Â <div> 3Â Â Â Â Â <h1>Looping through arrays</h1> 4Â Â Â Â Â <ul> 5Â Â Â Â Â Â Â <li v-for="n in 5" :key="n"> 6Â Â Â Â Â Â Â Â Â {{ n }} 7Â Â Â Â Â Â Â </li> 8Â Â Â Â Â </ul>
The complete code for this step is available at https://packt.live/3pFAtgB.
This will generate an output as follows:
- Now let's loop through an array of strings and count the iteration of our array with
n
. Prepare an array of your personal interests in thedata()
function. By looking for (item, n
) inside theinterests
array,item
outputs the string of the array, andn
is the loop index:<template> Â Â <div> Â Â Â Â <h1>Looping through arrays</h1> Â Â Â Â <ul> Â Â Â Â Â Â <li v-for="(item, n) in interests" :key="n"> Â Â Â Â Â Â Â Â {{ item }} Â Â Â Â Â Â </li> Â Â Â Â </ul> Â Â </div> </template> <script> export default { Â Â data() { Â Â Â Â return { Â Â Â Â Â Â interests: ['TV', 'Games', 'Sports'], Â Â Â Â } Â Â }, } </script>
The following output is generated upon running the preceding code:
In this exercise, we learned how to iterate over both an arbitrary number and a specific array of strings, outputting the string value or index of an array. We also learned that the key attribute needs to be unique to avoid DOM conflicts and forces the DOM to re-render the component properly.