Skip to content

Commit 01da868

Browse files
committed
fix underscore properties (fix vuejs#160)
1 parent a374438 commit 01da868

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ function processState (instance) {
379379
))
380380
.map(key => ({
381381
key,
382-
value: instance[key]
382+
value: instance._data[key]
383383
}))
384384
}
385385

0 commit comments

Comments
 (0)