vue-i18n + storybook - Why are my translations not working? vue-i18n + storybook - Why are my translations not working? vue.js vue.js

vue-i18n + storybook - Why are my translations not working?


The error msg is "Cannot translate the value of keypath translation.value".So maybe you need to declare translation.value in your i18n instance.like:

i18n: new VueI18n({  locale: 'en',  messages: {    en: {      transition: {        value: 'value'      }  }}