route base name: {{ baseRouteName }}
``` -------------------------------- ### English Translations for Module Source: https://i18n.nuxtjs.org/docs/guide/extend-messages Example of English JSON translations for a module. These messages can be accessed using the `$t` function in the project. ```json { "my-module-example": { "hello": "Hello from external module" } } ``` -------------------------------- ### Vue I18n Configuration with Plain Object Source: https://i18n.nuxtjs.org/docs/api/options Example of exporting a plain object for Vue I18n configuration. This object includes locale settings and messages. ```javascript export default { legacy: false, locale: 'en', messages: { en: { welcome: 'Welcome' }, fr: { welcome: 'Bienvenue' } } } ``` -------------------------------- ### Using useLocalePath in a Vue Component Source: https://i18n.nuxtjs.org/docs/composables/use-locale-path Demonstrates how to use the useLocalePath composable within a Vue component's setup script to generate locale-specific links for navigation. ```vue