yarn vuex 2.5.0

latest releases: 4.1.0, 4.0.2, 4.0.1...
6 years ago

New

  • store.registerModule can now be called while preserving current state if the module is already registered, by passing a 3rd argument as { preserveState: true }. Useful in server-side rendering.

  • New method: store.subscribeAction() - similar to store.subscribe, but for actions instead.

  • Namespaced modules can now also register global actions using the following syntax:

    const module = {
      actions: {
        rootAction: {
          root: true,
          handler: () => {}
        } 
      }
    }
  • The createLogger function now also accepts a logger option, allowing the user to provide a custom implementation of the console object to be used when logging.

Don't miss a new vuex release

NewReleases is sending notifications on new releases.