Strongly typed i18n

Hey. I'm using the i18n module for nuxt, and I'm wondering if there's a way to achieve type-safety when using translation keys in template?
So instead of a magic string, being able to reference something type-safe indicating that they key exists
<p>{{ $t('hello.world') }}</p>
<p>{{ $t(hello.world) }}</p> // this would be nice
Was this page helpful?