引用vant中IndexBar 索引栏进行v-for时数据无法显示

这是我的template


    <van-index-bar>
      <div v-for="data in cityList" :key="data.type">
        <van-index-anchor :index="data.type" />
        <van-cell :title="item.name" v-for="item in data.list" :key="item.cityId"/>
      </div>
    </van-index-bar>

这是我的cityList数据:

img

这是第一张图片中的list数组:

img

为什么无法遍历出来??
这是我想要的效果图:

img

报啥错