Cannot read properties of undefined (reading ‘__ob__‘)

项目场景:

场景:用户点击退出到首页的时候,首页登录验证码没刷新的问题

image.png

问题描述:

vue遇到:“TypeError: Cannot read properties of undefined (reading '__ob__')”的报错

原因分析:

往往出现上述报错,是因为没有写return { },只写了:

    export default {
          data() {}
    }

解决方案:

    export default {
          data() {
            return{}
          },
    }

-EOF-

你可能感兴趣的:(Cannot read properties of undefined (reading ‘__ob__‘))