LLwanran / front_end_studying

前端知识要点
https://llwanran.github.io/front_end_studying/
2 stars 1 forks source link

Vue在使用computed时,函数名和data数据源中的数据可以同名吗? #43

Open LLwanran opened 5 years ago

LLwanran commented 5 years ago

不能同名。因为不管是计算属性还是data还是props都会被挂载在vm实例上,因此这三个都不能同名 https://github.com/vuejs/vue/blob/dev/src/core/instance/state.js#L202 此处校验不会通过