You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vue.i18n.mergeLocaleMessage('en-US', {test: {one: 'one'}});
setTimeout(() => {
// trying to output {{ $t('test.two') }} does not work it never triggers in this case...
Vue.i18n.mergeLocaleMessage('en-US', {test: {two: 'two'}});
}, 2000);
Using merge after some delay does not seem to trigger an update.
EDIT: Not sure if it's related to latest change #1099 ?
The text was updated successfully, but these errors were encountered: