Configuración
Consulte la documentación de Nuxt.js para obtener más información sobre la instalación y el uso de módulos en Nuxt.js.
Agregar nuxt-i18n
a tus dependencias:
yarn add nuxt-i18n
npm install nuxt-i18n
Then, add nuxt-i18n
to the modules
section of nuxt.config.js
. You can use either of the following ways to specify the module options:
nuxt.config.js
{
modules: [
'nuxt-i18n',
],
i18n: {},
}
or
nuxt.config.js
{
modules: [
[
'nuxt-i18n',
{ /* module options */ }
]
],
}
Typescript
Si está utilizando typescript o ejecuta un servidor de lenguaje de typescript para verificar el código (por ejemplo, a través de Vetur), agregue tipos a la matriz types
en su tsconfig.json
:
tsconfig.json
{
"compilerOptions": {
"types": [
"@nuxt/types",
"nuxt-i18n",
]
}
}