Skip to content

v0.8.0

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 23 Jun 17:41
· 877 commits to main since this release
  • 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)