[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: “isCommentShow”.
避免直接改变属性,因为每当父组件重新渲染时,该值都将被覆盖。相反,请使用基于属性值的数据或计算属性。属性正在被修改:isCommentShow。
子组件中不能修改父组件中的数据,要由父组件修改。详见文章常规数据共享与vuex全局数据管理