<div id="app">
<h1 class="text-center">{{time}}</h1>
</div>
let app=new Vue({
el: "#app",
data: {
timer: null,
time: 20
},
mounted() {
this.timer=setInterval(this.countdown, 1000);
},
methods: {
countdown() {
this.time --;
if(this.time==0){
clearInterval(this.timer)
}
}
},
beforeDestroy() {
clearInterval(this.timer);
}
})