mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
16 lines
570 B
Plaintext
16 lines
570 B
Plaintext
<view class="container">
|
|
|
|
<image class="logo" src="https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png"></image>
|
|
|
|
<block wx:for="{{ list }}" wx:for-item="group" wx:key="title">
|
|
<view class="zan-panel-title">{{ group.title }}</view>
|
|
<view class="zan-panel">
|
|
<navigator wx:for="{{ group.content }}" wx:key="name" class="zan-cell zan-cell--access" url="{{ item.path }}">
|
|
<view class="zan-cell__bd">{{ item.name }}</view>
|
|
<view class="zan-cell__ft"></view>
|
|
</navigator>
|
|
</view>
|
|
</block>
|
|
|
|
</view>
|