vue 父组件如何调用子组件的函数Methods

答案就是使用ref即可。

<countdown  ref="countdown"></countdown>

beforeDestroy () {
      // 切换页面时消灭计时器
      this.$refs.countdown.clearTimer()
}

 

posted @ 2018-02-07 09:42  贝尔塔猫  阅读(1525)  评论(0编辑  收藏  举报