Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-
父组件子组件//这是一个弹窗exportdefault{name:"popup",props:{show:true,},methods:{close(){this.show=false;this.$emit('closepop')}}}以上是源码,当我点击弹窗的时候出现了以下报错信息大概意思是:通过props传递给子组件的show,不能在子组件内部修改props中的show值。==========