告诉我如何在我调用的子组件中传递上面的值this.$emit('get-method', this.users)
并在父母以某种方式得到<add-new-base-component @get-method="newMethod" ref="showmodal"></add-new-base-component>
我需要newMethod
得到this.users
告诉我如何在我调用的子组件中传递上面的值this.$emit('get-method', this.users)
并在父母以某种方式得到<add-new-base-component @get-method="newMethod" ref="showmodal"></add-new-base-component>
我需要newMethod
得到this.users
根据文档 - 将数据与事件一起传递:您可以将某些数据与事件一起发送。例如,如果我们希望子组件向父组件发送数据,我们可以使用第二个参数
$emit
来提供这个值:如果事件处理程序是一个方法(比方说):
,则该值将作为第一个参数传递:
这是一个完整的例子: