...">
美文网首页
[前端]vue中父组件如何调用子组件的方法?

[前端]vue中父组件如何调用子组件的方法?

作者: 半颗糖嘿 | 来源:发表于2022-10-24 18:49 被阅读0次

vue如何在父组件中去调用子组件的方法?
方法一:通过ref属性
1.在父组件使用子组件时,给子组件设置属性ref值
例如:
<Child ref="child" ></Child>
2.在子组件中定义方法
例如:
getData() {
console.log("子组件中的getData方法");
}
3.在父组件中调用子组件中的方法
例如:

this.$refs.child.getData();

方法二:使用emit、on方法

$emit、$on

1.在子组件中定义方法
例如:

this.$on('getData', function() {
  console.log("子组件中的getData方法");
});

2.在父组件中使用子组件中的方法
例如:

this.$refs.child.$emit("getData");

相关文章

网友评论

      本文标题:[前端]vue中父组件如何调用子组件的方法?

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