vue3 父组件调用子组件方法
1、使用ref
属性(推荐方式)
在子组件上添加ref属性
<template>
<div>
<Child ref="childRef"></Child>
<button @click="isgetlist">调用子组件方法</button>
</div>
</template>
<script setup>
import { ref } from 'vue';
import Child from './Child.vue';
const childRef= ref(null);
const isgetlist= () => {
if (childRef.value) {
// 假设子组件有一个名为childMethod的方法
childComponentRef.value.getlist();
}
};
</script>
子组件暴露想要父组件调用的事件
<template>
<div>
<h2>子组件</h2>
</div>
</template>
<script setup>
const getlist= () => {
console.log('子组件的方法被调用了');
};
// 将方法暴露给父组件
defineExpose({
getlist
});
</script>