How to loop over nested array in vue and display data every 5 seconds?
问题 I'm using Vue Js and I have a nested array like this: arrays: [ { name: 'Max', Info: [60, 75, 70, 85, 65], }, { name: 'Dave, Info: [70, 95, 60, 65, 83], }, ] I have a user profile box that displays name and info for each user. <div class="outer" v-for="(item, index) in arrays" :key="item.id" v-bind:id="item.name"> I would like to display info in template: <div class="box c" >Info<span v-for="info in item.Info">{{info}}</span></div> When I did this it showed the correct array for the correct