Heim > Fragen und Antworten > Hauptteil
Keine normale Übersetzung erforderlich, aber ich möchte zwei Objektarrays übersetzen und in eine Komponente binden
<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粉8846670222024-03-22 10:23:33
使 infonews
成为计算属性。每个的 title
和 content
应该是翻译键。
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"), }, ] }; } }