Skip to content

v2.4.0

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 29 Aug 15:04
· 532 commits to main since this release

New

  • New helper method createNamespacedHelpers: a helper-generator that generates namespaced mapXXX helpers for you:

    const { mapState, mapActions } = createNamespacedHelpers('some/nested/module')
    // everything generated by mapState and mapActions are bound to the module.

    See docs for more info.

    (@riophae via #800)

Misc

  • Various typing and assertion improvements.