普通的Vue实例data是一个对象:
data: { count: 0 }
组件的data是一个方法:
data: function () { return { count: 0 } }
详情见官网:https://cn.vuejs.org/v2/guide/components.html