vue-i18n
vue-i18n copied to clipboard
Type definition of lazy loading with dynamic import to `messages` options
trafficstars
createI18n
const i18n = createI18n({
messages: {
en: import('/path/to/en.json').default
}
}
useI18n
const i18n = useI18n({
messages: {
en: import('/path/to/en.json').default
}
}