Vue 父子组件之间相互传参,相互调用函数

本文介绍了在Vue 3.0中,如何实现父组件调用子组件方法并获取子组件数据,以及子组件调用父组件方法获取父组件数据。通过使用`ref`、`$refs`、`$emit`和`props`,详细展示了双向通信的实现过程。
摘要由CSDN通过智能技术生成

今天和大家分享一下vue父子之间传参以及 父组件调用子组件方法,获取子组件数据;子组件调用父组件方法,获取父组件数据的心得

源码github地址 https://github.com/JustDoIt521/originCoding/tree/master/vue-vuex

Vue版本 3.0    IDE  VSCode

新建一个项目,结构如下

父组件 father 子组件firstChild secondChild代码如下

<template>
  <div id="father">
    <h2>father</h2>
    <div style="display:flex;justify-content:space-around;margin-top:80px;">
      <first-child></first-child>
      <second-child></second-child>
    </div>
  </div>
</template>
<script>
import firstChild from "@/views/firstChild"
import secondChild from "@/views/secondChild"
export default {
  name: "father",
  data() {
    return {"
    }
  },
  components:{
    "first-child": firstChild,
    "second-child": secondChild
  },
  methods: {
  }
}
</script>

 

<template>
  <div id="firstChild">
    <h3>firstChild</h3>
  </div>
</template>
<script>
export default {
  name: "firstChild",
  data() {
    return {
    }
  },
  methods: {
  },
}
</script>

<template>
  <div id="secondChild">
    <h3>secondChild</h3>
  </div>
</template>
<script>
export default {
  name: "secondChild",
  data() {
    return {
    }
  },
  methods: {
  }
}
</script>

运行项目,页面结构如下

假设说现在父组件问两个子组件,询问说:你们有什么话要给我说呀?(调取子组件方法,获取子组件对自己说的话)

要调取子组件方法,需要使用到ref属性,因此父组件代码变更如下

<template>
  <div id="father">
    <h2>father</h2>
    <div>
      <span>{
  {msg}}</span>
    </div>
    <div>
      <button @click="getMsg('firstChild')">firstChild</button>
      <button @click="getMsg('secondChild')" style="margin-left:10px;">secondChild</button>
    </div>
    <div style="display:flex;justify-content:space-around;margin-top:80px;">
      <first-child ref
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值