index.axml 479 B

123456789101112131415
  1. <view
  2. class="ant-container {{ headerInBox ? 'ant-container-headerInBox' : 'ant-container-headerNotInBox' }} {{ className ? className : '' }}"
  3. style="{{ style }}">
  4. <view class="ant-container-header">
  5. <view class="ant-container-header-title">
  6. <slot name="title">{{ title }}</slot>
  7. </view>
  8. <view class="ant-container-header-right">
  9. <slot name="headerRight" />
  10. </view>
  11. </view>
  12. <view class="ant-container-content">
  13. <slot />
  14. </view>
  15. </view>