vue框架父组件调用子组件的方法
时间: 2023-09-08 16:17:28 浏览: 136
在 Vue 框架中,父组件可以通过子组件的引用调用子组件的方法。你可以通过 `ref` 属性在父组件中获取子组件的引用,然后使用这个引用来调用子组件的方法。
以下是一个示例:
```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` 方法。
请注意,需要确保子组件已经被渲染才能获取其引用。因此,在父组件中使用子组件之前,可以放在适当的生命周期钩子函数(如 `mounted`)或条件渲染的判断中。
阅读全文