vue父组件调用子组件中的方法
时间: 2023-11-03 22:18:14 浏览: 115
在Vue中,父组件可以通过使用`ref`属性来获取子组件的实例,然后调用子组件的方法。
下面是一个示例:
```vue
<template>
<div>
<ChildComponent ref="childRef"></ChildComponent>
<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`。然后,通过`this.$refs.childRef.childMethod()`来调用子组件中的`childMethod`方法。
需要注意的是,子组件必须定义一个名为`childMethod`的方法,以供父组件调用。
阅读全文