v-for
<s-template> <div id="app"> <table> <thead> <tr> <th>Name</th> <th>Age</th> <th>Sex</th> </tr> </thead> <tbody> <tr v-for="person in peoples"> <td>{{ person.name }}</td> <td>{{ person.age }}</td> <td>{{ person.sex }}</td> </tr> </tbody> </table> </div> <script src="js/vue.js"></script> <script> var vm = new Vue({ el: '#app', data: { peoples: [ { name: 'Jack', age: 30, sex: 'Male' }, { name: 'Bill', age: 26, sex: 'Male' } ] } }) </script> </s-template> <!-- -->