How do I call an object inside the Vue data as the value of an item?
So lets say I want to add this {{ $t(‘index-p1’) }} inside the value of title. items: [ { icon: ‘mdi-apps’, title: ‘Welcome’, to: ‘/’ }, I am using this for i18n and the data that the {{ $t(‘index-p1’) }} contains is stored in a JSON file. It works just fine if I use it… Read More How do I call an object inside the Vue data as the value of an item?