vue父调用子组件的方法
时间: 2023-11-03 11:52:16 浏览: 71
vue 父组件中调用子组件函数的方法
5星 · 资源好评率100%
在Vue中,父组件可以通过`$refs`来调用子组件的方法。下面是一个示例:
```vue
<template>
<div>
<child-component ref="childRef"></child-component>
<button @click="callChildMethod">调用子组件方法</button>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent
},
methods: {
callChildMethod() {
this.$refs.childRef.childMethod();
}
}
}
</script>
```
在上面的示例中,父组件通过`ref`给子组件起了一个引用名`childRef`。然后,在父组件的`callChildMethod`方法中,可以使用`this.$refs.childRef`来访问子组件实例,从而调用子组件的方法`childMethod()`。
需要注意的是,要确保子组件已经加载并创建了实例,才能正确地使用`$refs`来访问子组件。
阅读全文