[Vuejs]-Translation in Vue 3 script i18n

0👍

The answer (dont change/add anything to the i18n file):

<script>

export default {
  computed: {
    translation() {
     return this.$t('basicnavigation.tabs.logos')
    },
  },

  tabIcon: 'images',
}
</script>

Leave a comment