“Vue Nested Loop” Kode Jawaban

Vue Nested Loop

<ul v-for="set in sets">
  <li v-for="n in even(set)">{{ n }}</li>
</ul>
John wick

Vue Nested Loop

data: {
  sets: [[ 1, 2, 3, 4, 5 ], [6, 7, 8, 9, 10]]
},
methods: {
  even: function (numbers) {
    return numbers.filter(function (number) {
      return number % 2 === 0
    })
  }
}
John wick

Jawaban yang mirip dengan “Vue Nested Loop”

Pertanyaan yang mirip dengan “Vue Nested Loop”

Lebih banyak jawaban terkait untuk “Vue Nested Loop” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya