v0.8.0
-
Now supports both Vue 1.x and 2.0!
-
Small breaking change:
store.watch
now only accept functions:// before store.watch('a.b', cb) // after store.watch(state => state.a.b, cb)
Now supports both Vue 1.x and 2.0!
Small breaking change: store.watch
now only accept functions:
// before
store.watch('a.b', cb)
// after
store.watch(state => state.a.b, cb)