vue3 父子组件之间的方法调用

本文介绍了在Vue中如何使用ref属性从父组件调用子组件的方法,以及通过自定义事件实现子组件调用父组件的方法。两种方式分别展示了在常规<script>和<script setup>语法下的实践例子,强调了在<script setup>中使用defineExpose和defineEmits来暴露组件方法和事件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

写法1

父组件通过为子组件绑定ref属性调用子组件的方法

  1. 父组件的内容
<template>
  <div class="container">
    <childComponent ref="childRef"></childComponent>
    <el-button type="primary" size="default" @click="touchEvent">点击触发子组件方法</el-button>
  </div>
</template>

<script>
import { ref } from 'vue'
import childComponent from '../components/childComponent.vue'

export default {
  components: {
    childComponent
  },

  setup() {
    const childRef = ref(null)

    const touchEvent = () => {
      childRef.value.firstEvent()
    }

    return {
      childRef,
      touchEvent
    }
  }
}
</script>
  1. 子组件的内容
<template>
  <div class="container">
    <div>
      <span>父组件触发了{{ count }}次子组件的方法</span>
    </div>
  </div>
</template>

<script>
import { ref } from 'vue'

export default {
  setup() {

    const count = ref(0)

    const firstEvent = () => {
      count.value++
    }

    return {
      count,
      firstEvent
    }
  }
}
</script>

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-eOEed4gH-1658307849413)(C:\Users\zll\AppData\Roaming\Typora\typora-user-images\1658306031165.png)]

父组件通过自定义事件,子组件通过emit调用父组件的方法

  1. 父组件的内容
<template>
  <div class="container">
    <span>子组件调用了{{ count }}次父组件的方法</span>
    <childComponent @parentEvent="touchEvent"></childComponent>
  </div>
</template>

<script>
import { ref } from 'vue'
import childComponent from '../components/childComponent.vue'

export default {
  components: {
    childComponent
  },
  setup() {
    const count = ref(0)

    const touchEvent = (data) => {
      count.value++
      console.log(data) // 接受子组件传递过来的值
    }

    return {
      count,
      touchEvent
    }
  }
}
</script>
  1. 子组件的内容
<template>
  <div class="container">
    <el-button type="primary" size="default" @click="parentEvent">点击触发父组件方法</el-button>
  </div>
</template>

<script>
import { ref } from 'vue'

export default {
  setup(props, ctx) {
    console.log(props, ctx);
    const parentEvent = () => {
      ctx.emit('parentEvent');
      ctx.emit('parentEvent', '向父组件传递的值') //可以向父组件传值
    }

    return {
      parentEvent
    }
  }
}
</script>

在这里插入图片描述

写法2

使用 <script setup> 的组件是默认关闭的,即通过模板 ref 或者 $parent 获取到组件的公开实例,不会暴露任何在 <script setup> 中声明的绑定。 为了在 <script setup> 组件中明确要暴露出去的属性,使用 defineExpose 编译器宏, 同样必须使用 definePropsdefineEmits API来声明propsemit

父组件通过为子组件绑定ref属性调用子组件的方法
2.1 父组件的内容

<template>
  <div class="container">
    <childComponent ref="childRef"></childComponent>
    <el-button type="primary" size="default" @click="touchEvent">点击触发子组件方法</el-button>
  </div>
</template>
<script setup>
import { ref } from 'vue';
import childComponent from '../components/childComponent.vue'

const childRef = ref(null)
const touchEvent = () => {
  childRef.value.firstEvent()
}

</script>

2.2 子组件的内容

  • 子组件的方法使用defineExpose暴露出来
<template>
  <div class="container">
    <div>
      <span>父组件触发了{{ count }}次子组件的方法</span>
    </div>
  </div>
</template>

<script setup>
import { ref } from "vue";

const count = ref(0)
const firstEvent = () => {
  count.value++
}

defineExpose({ firstEvent })
</script>

子组件通过emit调用父组件的方法

2.1 父组件的内容

<template>
  <div class="container">
    <span>子组件调用了{{ count }}次父组件的方法</span>
    <childComponent @parentEvent="touchEvent"></childComponent>
  </div>
</template>
<script setup>
import { ref } from 'vue';
import childComponent from '../components/childComponent.vue'

const count = ref(0)
const touchEvent = (data) => {
  console.log(data) //data接收子组件传过来的值 user: {...}
  count.value++
}
</script>

2.2 子组件的内容

  • 子组件的方法使用defineEmits暴露出来
<template>
  <div class="container">
    <el-button type="primary" size="default" @click="parentEvent">点击触发父组件方法</el-button>
  </div>
</template>

<script setup>
import { onMounted } from "vue";
const user = {
	name: '小明',
	age: 25,
}
const emit = defineEmits([ "parentEvent" ]);
const parentEvent = () => {
  // 传递user到父组件
  emit('parentEvent', user);
}
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值