V-for is a directive within Vue.js which iterates over items in a list.
V-for is a vue.js directive which iterates over items in a list. According to the Vue.js documentation, v-for requires a special syntax such as "item in items" and later allows to use the referred item within the v-for scope. It is similar to a for-each loop in other languages.