Avoid mutating a prop directly since the value will be overwritten whenever the parent component...

Error message:
insert image description here
Reason: The parameter passed by the parent component (data in props) is modified in the child component, which is not allowed.
Modification method: event delivery (this.$emit), modified in the parent component

Guess you like

Origin blog.csdn.net/qq_43483403/article/details/120039568