Web Vue 父子相互调用 By anribras 发表于 2019-07-12 父调用子的回调 子调用父 父调用子的回调 注意仅仅是 callback,给子组件做个 ref,父亲直接调用就好: <comment-pagination :post_info="post_info" ref="cmt_page_r" ></comment-pagination> 在父亲里: that.$refs.cmt_page_r.fetchData(); 子调用父 利用 emit event 就好.