[Command] VUE - 8 v-for

1 v-for

Through the data to render the page is very popular demand, Vue through v-forto achieve the directive.

1.1 iterate

grammar:

v-for="item in items"
  • items: To traverse the array, need to define the data in the vue.
  • item: Alias ​​array elements obtained by iterative

Examples

<div id="app">
    <ul>
        

Guess you like

Origin blog.csdn.net/weixin_42112635/article/details/104095913