vue报错: Avoid mutating a prop directly since the value will be overwritten whenever the paren

原因:(单向数据流)
子组件不能修改props传递的值

解决方法:
子组件再定义一个变量接收值,
监听一下新定义的变量
使用this.$emit(‘zz’,data)
页面上监听一下

你可能感兴趣的:(vue,报错)