通过 $on 或 $once 监听页面生命周期销毁来去掉定时器,

2020-08-05  本文已影响0人  阿克兰

export default {

    mounted() {

        this.creatInterval('hello')

        this.creatInterval('world')

    },

    creatInterval(msg) {

        let timer = setInterval(() => {

            console.log(msg)

        }, 1000)

        this.$once('hook:beforeDestroy', function() {

            clearInterval(timer)

        })

    }

}

上一篇 下一篇

猜你喜欢

热点阅读