Hello. In the code below there are two arrays - one with values, the other is used for the counter. I can not understand why the counters work incorrectly (it is necessary that they work independently on each button). + Interested in how to make the counter run automatically, without pressing a button. Those downloaded the page, there are 3 items. And immediately counters began to count. If you add a new one, then the countdown will start from scratch. Link to Fidl
new Vue({ el: '#page', data: { arr: [1, 2 ,3], count: [0, 0 ,0] }, methods: { addEll: function() { this.arr.push(this.arr.length + 1); this.count.push(0); }, incrementio: function(val) { interval = setInterval(() => { Vue.set(this.count, this.count[val], 0); this.count[val]++; }, 1000); }, }, computed: { visibleList: function(){ return this.arr; } } }) <script src="https://unpkg.com/vue"></script> <div id="page"> <button v-on:click="addEll">Добавить элемент</button> {{ arr }} {{ count }} <ul> <li v-for="(item, index) in visibleList"> {{item}} <button v-on:click="incrementio(index)">Счетчик: {{count[index]}}</button> </li> </ul> </div>