child.vue文章来源:https://www.toymoban.com/news/detail-620366.html
<template>
</template>
<script setup>
const DoSomeThing = () => {
alert('点击事件');
}
// 输出组件的方法,让外部组件可以调用
defineExpose({
DoSomeThing,
})
</script>
<style lang="less" scoped>
</style>
parent.vue文章来源地址https://www.toymoban.com/news/detail-620366.html
<template>
<childVue ref="child" />
<a-button type="primary" @click="ChildEvent">调用子组件的方法</a-button>
</template>
<script setup>
// setup 模式下,直接引用 Vue 文件,则相当于在组件中,注册了子组件
import { onMounted, ref } from 'vue';
import childVue from './child.vue';
// 创建于子组件同名的 变量名,则相当于获取了这个组件的实例
// 注意 : setup 模式下,不要让 子组件上的 ref 值 与创建的变量值重名😓
const child = ref();
// 子组件实例只有 在组件被挂载之后才能被调用
onMounted(() => {
console.log(child.value);
})
const ChildEvent = () => {
child.value.DoSomeThing();
}
</script>
<style lang="less" scoped>
</style>
到了这里,关于vue3 调用子组件的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!