Concept Flow - v-for for list rendering
Start with array data
Vue template reads v-for directive
Loop over each item in array
Create DOM element for each item
Insert elements into parent container
Render list on page
Vue reads the v-for directive, loops over the array, creates elements for each item, and renders them inside the parent container.