|
12345678910111213141516171819202122232425 |
- <view wx:if="{{vertical}}" style="height: {{height}}rpx;display: flex; flex-direction: column; {{justify ? 'justify-content: ' + justify + ';' : '' }} {{align ? 'align-items: ' + align + '; ' : ''}} {{styleCss ? styleCss : ''}}">
- <slot></slot>
- </view>
- <view wx:else style="display: flex; {{justify ? 'justify-content: ' + justify + ';' : '' }} {{align ? 'align-items: ' + align + '; ' : ''}} {{wrap ? 'flex-wrap: ' + wrap + '; ' : ''}} {{styleCss ? styleCss : ''}}">
- <slot></slot>
- </view>
-
- <!-- justify -->
- <!-- center
- end
- first baseline
- flex-end
- flex-start
- last baseline
- left
- right
- safe
- space-around
- space-between
- space-evenly -->
-
- <!-- align -->
- <!-- center
- flex-end
- flex-start -->
|