1、首先是子组件中 Child.vue methods:{ show(){ console.log('hello vue.js'); } } 2、然后就是父组件 <child ref="child"></child> <button @click="child">调用子组件的方法</button> child(){ this.$refs.child.show() // 注意 这里我们是在上面使用了一个子组件 如果是俩个的话 就是数组形式了 // this.$refs.child[0].show() 进行调用第一个使用的子组件 }