合伙人运营小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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>