Posts

Showing posts with the label 5). Vue.js Component and For Loop Example

5). Vue.js Component and For Loop Example

For Component create one file as per below path go to src >> components >> memberList.vue file. // MemberList.vue  <template>    <div>      <h1>Members List</h1>      <br/>     <ul>             <li v-for="member in members" :key="member">{{ member }}</li>      </ul>    </div>  </template> <script>  export default {     data () {              return {                    members: ['Ajay ', 'Viral', 'Vimal', "Parth", "Ankit"]           }        } }  </script> ============================ Add below code in in the  App.vue  file. // App.vue  <template>   ...