I use vue-i18n in my application. Now I would like to add an "About" view with a lot text and links.
I think it would be better maintainable to have several language dependent views than adding several {{ $t(...)}}
in one view about.vue
.
I thought about something like adding language ISO code to the view name:
- .../about.en.vue
- .../about.de.vue
- .../about.es.vue
What would be the best way to combine and integrate with vue-i18n? Probably there is a different way?