傳遞 $t 作為 prop 給一個元件的國際化資料的方法
P粉898049562
P粉898049562 2024-03-21 18:30:32
0
1
382

以正常方式無需翻譯,但我想翻譯兩個物件數組並綁定到組件中

#
<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

全部回覆(1)
P粉884667022

使 infonews 成為計算屬性。每個的 titlecontent 應該是翻譯鍵。

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"),
        },
      ]
    };
  }
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板