Skip to content

v0.6.3

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 23 Apr 16:19
· 922 commits to main since this release
  • Store module key must now be a single identifier (no longer support nested paths). e.g.:

    new Vuex.Store({
      modules: {
        'a.b.c': { ... } // this would no longer work
      }
    })

    This was not a public feature, and it didn't prove useful. It also introduced extra dependency on Vue internals due to the reliance on path parser. It is now removed for simplicities sake.

  • Minor warning improvements.

  • Silent mutation dispatch support. Documentation

  • Improved FSB support. cbfd5b8