为了账号安全,请及时绑定邮箱和手机立即绑定

vue.js v-for 分组渲染

vue.js v-for 分组渲染

拉丁的传说 2018-10-04 10:11:05
我想实现一个像手机联系人的一个的列表。并且通过首字母来分组。 请问如何用vue 里面的v-for 来渲染?HTML模板<li v-for="(item,index) in carbrands">  <h2 class="list-title" v-show="" >{{item.LETTER}} {{index}}</h2>  <ul class="list-content">    <li class="list-car-item" @click="typeShow"><img :src="item.IMAGE" alt=""><span>{{item.NAME}}</span></li>  </ul></li>数据通过data里的LETTER 想实现的效果我是菜鸟 ,请指教。
查看完整描述

1 回答

?
扬帆大鱼

TA贡献1799条经验 获得超9个赞

Vue 1.0 直接使用OrderBy进行首字母排序

< v-for="(item,index) in carbrands | orderBy 'LETTER'"> 

// 数组第一个显示LETTER以及现在的数组元素中的Letter!= 上一个数组元素中的Letter时显示Letter。

v-show="index === 0 || item.LETTER !== carbrands[index-1].LETTER"

Vue 2.0 使用计算属性

< v-for="(item,index) in carbrands"> 

v-show="index === 0 || item.LETTER !== carbrands[index-1].LETTER" 

computed: {

  carbrands: function () {

    return _.orderBy(this.carbrands, 'LETTER');  

  }

}

温馨建议:提问的时候直接贴代码出来方便别人复制粘贴修改,你贴图片很不方便

查看完整回答
反对 回复 2018-11-27
  • 1 回答
  • 0 关注
  • 1211 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信