父组件通过为子组件绑定ref属性调用子组件的方法
<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>
<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)]](https://1000bd.com/contentImg/2022/07/20/192946298.png)
子组件通过emit调用父组件的方法
<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 = () => {
count.value++
}
return {
count,
touchEvent
}
}
}
script>
<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');
}
return {
parentEvent
}
}
}
script>

使用
的组件是默认关闭的,也即通过模板 ref 或者 $parent 链获取到的组件的公开实例,不会暴露任何在
父组件通过为子组件绑定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 = () => {
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 emit = defineEmits([ "parentEvent" ]);
const parentEvent = () => {
emit('parentEvent');
}
script>