A list can be rendered using the v-for
directive. The syntax requires that you specify the source array to iterate on, and an alias that will be used to reference each item in the iteration. In the following example we use items
as the source array, and item
as the alias for each item.
<div id="app">
<h1>My List</h1>
<table>
<tr v-for="item in items">
<td>{{item}}</td>
</tr>
</table>
</div>
new Vue({
el: '#app',
data: {
items: ['item 1', 'item 2', 'item 3']
}
})
You can view a working demo here.