vue中父组件调用子组件里的方法

vue的子组件 Child 中定义了一个方法 childFn() ,现在想要在父组件 Parent 中调用这个方法,代码如下:
子组件:

...export default { methods: { childFn() { console.log('我是子组件的方法'); } } }

父组件:
import Child from './Child/Child.vue'; export default { components: { [ 'v-child': Child ] }, methods: { parentFn() { this.$refs.child.childFn(); // 调用子组件的childFn()方法 } } }

【vue中父组件调用子组件里的方法】(注意:子组件不能调用父组件的方法)

    推荐阅读