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.
14 lines
537 B
14 lines
537 B
<wxs src="../common/utils.wxs" module="_" />
|
|
|
|
<view class="class {{prefix}}-class {{layout==='vertical'? classPrefix + '--vertical-center' : ''}}">
|
|
<view
|
|
class="{{classPrefix}} {{classPrefix}}--{{layout}} {{classPrefix}}--{{align}} {{dashed? classPrefix + '--dashed' : ''}} "
|
|
style="{{_._style([dividerStyle, style, customStyle])}}"
|
|
>
|
|
<view class="{{prefix}}-class-content {{classPrefix}}__content">
|
|
<view wx:if="{{content}}"> {{content}} </view>
|
|
<slot wx:else name="content" />
|
|
</view>
|
|
</view>
|
|
</view>
|