vue2[Vue warn]: The computed property “XXX“ is already defined in data.

The scene error is as follows:
[Vue warn]: The computed property “oldCount” is already defined in data.

[Vue warn]: The computed property "oldCount" is already defined in data.

insert image description here
Reason for error:
The xxx attribute has been repeatedly declared many times.
You can check in the data definition of vue, if it is declared and defined, you can remove it and try it.

Reference:
[Vue warn]: The computed property “XXX” is already defined in data.
https://www.jianshu.com/p/ce0f39dee6d0

Guess you like

Origin blog.csdn.net/qq_26780317/article/details/126529809