search

Home  >  Q&A  >  body text

Please tell me how to get the variable of the loop count in v-for in VueJS?

For example, I have 10 pieces of data. How do I want the Button value to cycle from 1 to 10?QQ图片20171206153929.png

NULLNULL2552 days ago1765

reply all(1)I'll reply

  • 路过

    路过2017-12-07 08:52:29

    <div v-for="(index, item) in items">
    {{ index }} {{ item.message }}</div>

    index is index

    reply
    0
  • Cancelreply