index.wxml 429 B

123456789101112131415
  1. <view class="container">
  2. <view class="section">
  3. <navi-title title="{{title}}" count="{{config.length}}"/>
  4. <view class="section-content">
  5. <detail-navi-card
  6. wx:for="{{config}}"
  7. wx:for-item="config"
  8. wx:key="index"
  9. icon="{{config.icon}}"
  10. title="{{config.title}}"
  11. componentsPath="{{config.componentsPath}}"
  12. desc="{{config.desc}}"/>
  13. </view>
  14. </view>
  15. </view>