Skip to content

Instantly share code, notes, and snippets.

@culttm
Created March 30, 2020 13:18
Show Gist options
  • Save culttm/f5023b56a10e500a9c286f4605aa8c74 to your computer and use it in GitHub Desktop.
Save culttm/f5023b56a10e500a9c286f4605aa8c74 to your computer and use it in GitHub Desktop.
const load = async (i18n, component) => {
const messages = () => import('~/i18n/translations/' + i18n.locale + '/components/' + component);
const componentMessages = await messages();
i18n.setLocaleMessage(i18n.locale, {
...i18n.messages[i18n.locale],
testComponent: componentMessages.default
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment