v-for:  v-for 指令需要以 item in items 形式的特殊语法, items 是源数据数组并且 item 是数组元素迭代的别名。


基本用法:


    
            `item`     
new Vue({
    el:'#app',
    data:{
        arr:['apple','banana','cherry','durain']
    }
})

列表渲染 Vue2.0与Vue1.0的区别_第1张图片

这种写法类似Javascript种的关联数组,key 和 value,item就相当于数组的value。那数组的下标是否也能打出来呢?


    
            {{$index}} `item`