Vue components Cannot read property '__ob__' of undefined

用vue,webpack,bootstrap搭建的前端框架。

导航  在  首页  点击  课程中心,报了如下错误:Cannot read property '__ob__' of undefined

Vue components Cannot read property '__ob__' of undefined_第1张图片

研究了一上午,因为代码里面用了  components和模拟数据,刚开始还以为是数据加载出现问题,下午我就把所有的组件全部屏蔽掉,从静态页面开始追踪,发现静态页面跳转没有问题。然后把主页里的组件一个一个开放,问题就排出来了,原来是图片滚动组件中,data函数没有写return;


Vue components Cannot read property '__ob__' of undefined_第2张图片

就是差这么一句,花了一上午的时间。

顺便说一下,根据我在网上找的资料,总结出来,一般报 Cannot read property '__ob__' of undefined 都是data方法没有写return,所以在开发过程中要谨慎。vue开发过程中,坑很多,有时间再都贴出来。

你可能感兴趣的:(Vue components Cannot read property '__ob__' of undefined)