Answers for "v-for vue 2"

2

v-for vuejs

<ul id="example-1">
  <li v-for="item in items" :key="item.message">
    {{ item.message }}
  </li>
</ul>


const example1 = new Vue({
  el: '#example-1',
  data: {
    items: [
      { message: 'Foo' },
      { message: 'Bar' }
    ]
  }
})
Posted by: Guest on December-16-2020
1

v-for only getting one first value vuejs

<option v-for="(location, index) in locations" v-bind:value="location.id" v-bind:selected="index === 0">
  {{ location.from }} - {{ location.to }}
</option>
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language