VUE报错:[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "areaInfo"
大概意思是:避免直接改变属性,因为每当父组件重新渲染时,该值将被覆盖。相反,使用基于属性值的数据或计算属性。通过props传递给子组件的areaInfo,不能在子组件内部修改props中的areaInfo值,也就是通过props不能修改
然后在子类中又修改
**处理:**接在子组子组件设置变量接收该props中的参数