[Vuejs]-Vue3 vue-i18n Lazy loading

0👍

To be able to get i18n translation from anywhere in your application (vue3 in my case) :

import i18n from "@/i18n";

i18n.global.t("your_key")

Leave a comment