We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49385e1 commit 903be9bCopy full SHA for 903be9b
src/core/instance/state.js
@@ -111,8 +111,9 @@ function initProps (vm: Component, propsOptions: Object) {
111
112
function initData (vm: Component) {
113
let data = vm.$options.data
114
- // $options.data is guaranteed to be a function after merge
115
- data = vm._data = getData(data, vm)
+ data = vm._data = typeof data === 'function'
+ ? getData(data, vm)
116
+ : data || {}
117
if (!isPlainObject(data)) {
118
data = {}
119
process.env.NODE_ENV !== 'production' && warn(
0 commit comments