定时器使用

26 阅读1分钟
mounted() {
    this.creatInterval( hello )
    this.creatInterval( world )
},
creatInterval(msg) {
    let timer = setInterval(() => {
        console.log(msg)
    }, 1000)
    this.$once( hook:beforeDestroy , function() {
        clearInterval(timer)
    })
}