0👍
Make infonews
a computed property. The title
and content
of each should be the translation keys.
export default {
computed: {
infonews() {
return [
{
id: "01",
title: this.$t("what we do"),
content: this.$t("industke aecimen book"),
},
{
id: "02",
title: this.$t("our mission"),
content: this.$t("ggdddg"),
},
]
};
}
}
- [Vuejs]-Vue JS Role Based Authentication and Routing
- [Vuejs]-Option Group can't be selected in quasar 2 / Vue 3 when trying to migrate from quasar 1 /vue 2
Source:stackexchange.com