vue 中 hock 的使用
在 Vue 组件中,可以用过 $on
, $once
去监听所有的生命周期钩子函数,如监听组件的 updated 钩子函数可以写成 this.$on(‘hook:updated’, () => {})
使用$.once(‘hook:beforeDestory’,() => {})清理定时器
https://cn.vuejs.org/v2/guide/components-edge-cases.html#程序化的事件侦听器
const timer = setInterval(() => { |
在父组件监听子组件的生命周期方法
<!-- 父组件中 --> |
监听第三方组件数据的变化,但是组件又没有提供change事件,可以在外部监听组件的updated钩子函数
<child-component @hook:updated="handleChildUpdated" /> |