问题记录:TypeError: Cannot read properties of undefined (reading '__ob__')

vue报错 TypeError: Cannot read properties of undefined (reading 'ob')

检查组件发现
data () {
},

是data没有return,即使没有使用的变量也需要rerurn {}

解决:

data () {
  return {
  }
},
posted @ 2022-06-09 17:12  xiao旭  阅读(861)  评论(0编辑  收藏  举报