vue3-gettext
vue3-gettext copied to clipboard
How to import vue3-gettext into nuxt projects?
How to import vue3-gettext into nuxt projects?
@snowdream Do you have a specific problem?
I have not used Nuxt recently, but looking at the documentation I think you can just create a plugin file and do something like this:
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(createGettext(...))
})
I don't know if there are issues with SSR or something.