data functions should return an object
Cannot read property '__ob__' of undefined;
出现这种报错很有可能是在哪个不起眼的组件里边写了
data(){
}
而没有写
data(){
return{
}
}
导致的
data functions should return an object
Cannot read property '__ob__' of undefined;
出现这种报错很有可能是在哪个不起眼的组件里边写了
data(){
}
而没有写
data(){
return{
}
}
导致的