city-casereport/miniprogram_npm/tdesign-miniprogram/tab-panel/tab-panel.wxml

13 lines
337 B
Plaintext
Raw Normal View History

2023-12-06 14:22:42 +08:00
<wxs src="../common/utils.wxs" module="_" />
<view
class="class {{prefix}}-class {{classPrefix}} {{active ? prefix + '-is-active': ''}}"
style="{{_._style([style, customStyle, (hide ? 'height: 0' : '')])}}"
id="{{id}}"
aria-role="tabpanel"
>
<view wx:if="{{panel}}">{{panel}}</view>
<slot />
<slot name="panel" />
</view>