Skip to content

Simplify initialization

Compare
Choose a tag to compare
@tikiatua tikiatua released this 16 Apr 11:13
· 165 commits to master since this release

This release simplifies the initialization of the plugin.

// previous initialization
const store = new Vuex.Store({
  modules: {
    i18n: vuexI18n.store
  }
});

// new initialization
const store = new Vuex.Store();