合伙人运营小程序
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.

tab-panel.wxml 337B

123456789101112
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view
  3. class="class {{prefix}}-class {{classPrefix}} {{active ? prefix + '-is-active': ''}}"
  4. style="{{_._style([style, customStyle, (hide ? 'height: 0' : '')])}}"
  5. id="{{id}}"
  6. aria-role="tabpanel"
  7. >
  8. <view wx:if="{{panel}}">{{panel}}</view>
  9. <slot />
  10. <slot name="panel" />
  11. </view>