fix(Divider): missing comma (#2205)

This commit is contained in:
charescape 2019-10-27 09:29:02 +08:00 committed by neverland
parent 2f2f3e42ae
commit 3c5894a898

View File

@ -2,7 +2,7 @@
<view <view
class="custom-class {{ utils.bem('divider', [{dashed, hairline}, contentPosition]) }}" class="custom-class {{ utils.bem('divider', [{dashed, hairline}, contentPosition]) }}"
style="{{ borderColor ? 'border-color: ' + borderColor + ';' : '' }}{{ textColor ? 'color: ' + textColor : '' }} {{ fontSize ? 'font-size: ' + fontSize + 'px' : '' }} {{ customStyle }}" style="{{ borderColor ? 'border-color: ' + borderColor + ';' : '' }}{{ textColor ? 'color: ' + textColor + ';' : '' }} {{ fontSize ? 'font-size: ' + fontSize + 'px;' : '' }} {{ customStyle }}"
> >
<slot /> <slot />
</view> </view>