In normal context, we just attach translation property to a variable like :
this.name = this.$t('language.name');
But I want to specific it in a specific language sometime( ex: in French).
Can we do something like this in vue.js ?
this.name = this.$t('language.name', locale: fr);