Vue.jsofficial guide
Vue.js provides a v-for directive, which can be used for displaying a list of items using the data from an array.
The following example renders a list of products with it's name and price.
var app = new Vue({
el: '#app',
data: {
products: