vue 父组件用ref调用子组件的方法
时间: 2024-06-16 15:07:52 浏览: 100
vue 父组件中调用子组件函数的方法
5星 · 资源好评率100%
在Vue中,父组件可以通过ref属性来调用子组件的方法。下面是一个简单的示例:
```html
<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()`。
需要注意的是,子组件的方法必须是公开的(即在子组件的`methods`选项中定义),才能被父组件通过`ref`调用。
阅读全文