方法一: $event 方法 // 子组件中 Child.vue const { proxy } = getCurrentInstance() function edit (item) { console.log('子组件参数', childParam) proxy.$emit('edit', childParam) } ... // 父组件接收参数 <Child @edit="editFun($event, parentParam)"></Child> 1. 2. 3. 4. 5. ...