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

场景报错如下:
[Vue warn]: The computed property “oldCount” is already defined in data.

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

在这里插入图片描述
报错原因:
xxx属性被重复声明了很多次。
可以查看一下vue的data定义中,是不是声明定义了,可以去掉试试看。

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

猜你喜欢

转载自blog.csdn.net/qq_26780317/article/details/126529809