Vue $emit() cannot trigger the parent component method. The Vue child component uses the custom event $emit to pass data to the parent component, which is invalid.

Solution (1)

The customized value in $emit does not support camel case

Solution(2)

this.$parent.orderChange(row);

Use $parent followed by parameter or method name

Guess you like

Origin blog.csdn.net/m0_61672533/article/details/128537732