You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Vue warn]: Method "xxx" has already been defined as a data property. [Vue warn]: Error in mounted hook: "TypeError: this.xxx is not a function" TypeError: this.xxx is not a function
Activity
dengBox commentedon Jun 28, 2019
报错,语法错误
April-Zheng commentedon Jul 1, 2019
报错
tsejx commentedon Jul 7, 2019
报错
"Method 'xxx' has already been defined as a data property"
键名优先级:props > data > methods
zejunking commentedon Aug 14, 2019
报warn,项目可以运行(vue2.5.17)
但data属性会覆盖methods定义的值,报属性已定义警告
props不会覆盖值,但会报属性已定义警告和Prop异常警告
censek commentedon Oct 22, 2019
[Vue warn]: Method "xxx" has already been defined as a data property.
[Vue warn]: Error in mounted hook: "TypeError: this.xxx is not a function"
TypeError: this.xxx is not a function
JaniceDong commentedon Mar 13, 2020
@tsejx 你说的这个键名优先级顺序确定是正确的嘛
duzouli commentedon Mar 28, 2020
首先看下initState(vm)方法的定义:
再看initMethods (vm, methods):