美文网首页
hook用法

hook用法

作者: 罗不错 | 来源:发表于2020-08-26 11:32 被阅读0次

    1.this.on 和this.once 可以绑定生命周期

    export default {
      mounted () {
        let timer = null
        timer = setInterval(() => {
          console.log(Date.now())
        }, 1000)
        this.$once('hook:beforeDestroy', () => {
          clearInterval(timer)
        })
      }
    } 
    
    1. 在父组件上,对子组件生命周期的监听<Parent @hook:mounted="event" />

    相关文章

      网友评论

          本文标题:hook用法

          本文链接:https://www.haomeiwen.com/subject/xluxsktx.html