当前位置: 代码迷 >> 综合 >> data functions should return an object
  详细解决方案

data functions should return an object

热度:47   发布时间:2023-11-26 11:43:23.0
data functions should return an object
Cannot read property '__ob__' of undefined;

出现这种报错很有可能是在哪个不起眼的组件里边写了

data(){
    }
而没有写
data(){
    return{
    }
}
导致的
  相关解决方案