Vue报错:Method "msg" has already been defined as a data property./this.msg is not a function……

Vue 报错信息:
[Vue warn]: Method "msg" has already been defined as a data property.
[Vue warn]: Error in mounted hook: "TypeError: this.msg is not a function"
TypeError: this.msg is not a function ……
原因:

在 Vue 中:computed(计算属性);dataprops 都会被挂在在 vm 实例上,因此不能同名。

也不能与函数名同名。

键名优先级:props > data > methods

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章