Another bugfix
This version should fix issues when adding a new locale that could occur with older versions of vuex. The plugin uses an internal vuex mechanism to notify watcher when adding a new locale and this might not be present on earlier vuex versions.
if (state.translations.__ob__) {
state.translations.__ob__.dep.notify();
}