Pass $t as prop to a component's internationalized data method
P粉898049562
P粉898049562 2024-03-21 18:30:32
0
1
375

No need to translate in normal way, but I want to translate two object arrays and bind into component

<InfoNews 
           v-for="infonew in infonews"
            :id="infonew.id"
            :title="infonew.title"
            :content="infonew.content"
          />
 data() {
    return {
     infonews: [
        {
          id: "01",
          title: "what we do",
          content:"industke aecimen book. ",
        },
        {
          id: "02",
          title: "our mission",
          content:"ggdddg",
           
        },
      ],
    };

P粉898049562
P粉898049562

reply all(1)
P粉884667022

Make infonews a computed property. Each of the title and content should be 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"),
        },
      ]
    };
  }
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template