Yu Hengliang

Results 2 comments of Yu Hengliang

can use ' this.update() ' , Are there other ways to update automatically?

``` Countdown: { countdown } countdown = 0 mounted() { setInterval(() => { this.countdown++ console.log(this.countdown) this.update() }, 1000) } ``` layout is custom component , ``` ``` use this.update(), but,...