0π
β
I have no experience with i18n but you cannot use mustache-like sintax inside tagsβ attribute, you should bind the attribute for that to work. test:
<menu-item to="/landingPage" v-bind:title="$t('My Profile')" />
or the shortcut:
<menu-item to="/landingPage" :title="$t('My Profile')" />
Of course, this assuming that
<p>{{ $t('My Profile') }}</p>
is working properly)
Source:stackexchange.com