1. 程式人生 > >vue中的錯誤提示

vue中的錯誤提示

1. 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: "content" found in
避免直接修改道具,因為當父元件重新呈現時,值將被覆蓋。相反,使用基於道具值的資料或計算屬性。道具突變:“內容”在裡面

 原因:子元件中接收到父元件傳入的值,直接對該值進行修改,vue中傳值是單向流的,不允許子元件對父元件的值進行修改,這樣防止造成不必要的麻煩

解決:對父元件傳入的值,子元件進行clone使用

父元件傳入的是content值,子元件通過data函式,將content值賦值給name,這樣就可以對name進行修改操作了。