子组件调用父组件点击事件
时间: 2023-10-06 09:14:51 浏览: 85
详解vue中在父组件点击按钮触发子组件的事件
5星 · 资源好评率100%
子组件可以通过在父组件中定义一个点击事件,并在子组件中使用`$emit`来触发该事件来调用父组件的点击事件。在上述引用中,父组件通过`@fatherMethod="fatherMethod"`或`:fatherMethod="fatherMethod"`的方式将`fatherMethod`方法传递给子组件。子组件可以通过`this.$emit('fatherMethod')`来触发父组件的点击事件。
阅读全文