jshmrtn / vue3-gettext

Translate Vue 3 applications with gettext.
https://jshmrtn.github.io/vue3-gettext/
MIT License
66 stars 23 forks source link

How to import vue3-gettext into nuxt projects? #42

Open snowdream opened 1 year ago

snowdream commented 1 year ago

How to import vue3-gettext into nuxt projects?

lzurbriggen commented 1 year ago

@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.