能否請你告訴我如何在vue js中使用手錶功能。我嘗試過使用,但是我得到了這個錯誤。如何使用手錶功能在vue js
vue.js:485 [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: "m"
found in
---> <AddTodo>
<Root>
https://plnkr.co/edit/hVQKk3Wl9DF3aNx0hs88?p=preview
我創建了不同的成分和主要成分
var AddTODO = Vue.extend({
template: '#add-todo',
props: ['m'],
data: function() {
return {
message: ''
}
},
methods: {
addTodo: function() {
console.log(this.message)
console.log(this.m);
this.m =this.message;
},
},
});
看屬性當我嘗試添加item
我得到這個錯誤。 步驟來重現此錯誤的輸入字段
- 輸入任何東西,然後點擊
Add button
無法重現,工作正常 – dfsq