data functions should return an object:
在vue里出现ata functions should return an object: 和 Cannot read property '__ob__' of undefined
解决办法:报错是因为在 data () {},里没有返回(return) 需要写成 data(){ return{ } } 就算没有数据也要写返回一个对象 (return)
在vue里出现ata functions should return an object: 和 Cannot read property '__ob__' of undefined
解决办法:报错是因为在 data () {},里没有返回(return) 需要写成 data(){ return{ } } 就算没有数据也要写返回一个对象 (return)