摘要: 方案一:通过ref直接调用子组件的方法; 父组件中 <template> <div> <Button @click="handleClick">点击调用子组件方法</Button> <Child ref="child"/> </div> </template> <script> import Chi 阅读全文
posted @ 2021-11-26 09:30 SultanST 阅读(34) 评论(0) 推荐(0) 编辑
摘要: Vue中子组件调用父组件的方法,这里有三种方法提供参考 ###第一种方法是直接在子组件中通过this.$parent.event来调用父组件的方法 父组件 <template> <div> <child></child> </div> </template> <script> import chil 阅读全文
posted @ 2021-11-26 09:27 SultanST 阅读(36) 评论(0) 推荐(0) 编辑