If I wanted to incorporate the {{ $t('index-p1') }}
value within the title
property, how would I do so?
items: [
{
icon: 'mdi-apps',
title: 'Welcome',
to: '/'
},
For internationalization purposes, the content of {{ $t('index-p1') }}
is sourced from a JSON file. While it functions correctly within a Vue template file, I'm uncertain about how to implement it within data. Can someone provide guidance on this?