2018-07-30 10:26:34 +08:00

22 lines
660 B
Plaintext

<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</view>
</view>
<view class="desc">轻量、可靠的小程序 UI 组件库</view>
<block wx:for="{{ list }}" wx:for-item="group" wx:key="title">
<van-panel title="{{ group.title }}">
<van-cell-group>
<van-cell
wx:for="{{ group.content }}"
wx:key="name"
is-link
url="{{ item.path }}"
title="{{ item.name }}"
></van-cell>
</van-cell-group>
</van-panel>
</block>
</view>