父组件触发子组件的方法
时间: 2024-02-28 07:50:03 浏览: 48
以下是一个父组件触发子组件方法的示例代码:
父组件:
```vue
<template>
<div>
<button @click="triggerChildMethod">触发子组件方法</button>
<ChildComponent ref="childComponent"></ChildComponent>
</div>
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent
},
methods: {
triggerChildMethod() {
this.$refs.childComponent.childMethod();
}
}
};
</script>
```
子组件:
```vue
<template>
<div>
子组件内容
</div>
</template>
<script>
export default {
methods: {
childMethod() {
console.log('子组件方法被触发');
}
}
};
</script>
```
在父组件中,我们通过`$refs`来获取子组件的实例,并调用子组件的方法`childMethod()`来触发子组件的方法。
阅读全文