<view class="container">
  <view class="title">
    <image class="logo" src="https://img.yzcdn.cn/public_files/2017/12/18/fd78cf6bb5d12e2a119d0576bedfd230.png" />
    <view class="title-text">Vant Weapp</view>
  </view>
  <view class="desc">轻量、可靠的小程序 UI 组件库</view>

  <block wx:for="{{ list }}" wx:for-item="group" wx:key="group.title">
    <view class="mobile-nav">
      <view class="mobile-nav__title">{{ group.groupName }}</view>
      <van-cell-group>
        <van-cell
          wx:for="{{ group.list }}"
          wx:key="item.title"
          is-link
          url="/pages{{ item.path }}/index"
          title="{{ item.title }}"
        ></van-cell>
      </van-cell-group>
    </view>
  </block>
</view>