You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
523 B

8 months ago
  1. <view class="van-calendar__header">
  2. <block wx:if="{{ showTitle }}">
  3. <view class="van-calendar__header-title"><slot name="title"></slot></view>
  4. <view class="van-calendar__header-title">{{ title }}</view>
  5. </block>
  6. <view wx:if="{{ showSubtitle }}" class="van-calendar__header-subtitle" bind:tap="onClickSubtitle">
  7. {{ subtitle }}
  8. </view>
  9. <view class="van-calendar__weekdays">
  10. <view wx:for="{{ weekdays }}" wx:key="index" class="van-calendar__weekday">
  11. {{ item }}
  12. </view>
  13. </view>
  14. </view>