Skip to content

Commit fcddd07

Browse files
committed
fix(t-step-item): 移除title和content多余的尖括号
1 parent 6e4a4d2 commit fcddd07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/step-item/step-item.wxml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
>
3131
<slot />
3232
<view class="{{_.cls(classPrefix + '__title', [curStatus, layout])}} {{prefix}}-class-title">
33-
<block wx:if="{{title}}">{{ title }}></block>
33+
<block wx:if="{{title}}">{{ title }}</block>
3434
<slot name="title" />
3535
<slot wx:if="{{layout === 'vertical'}}" name="title-right" />
3636
</view>
3737
<view class="{{_.cls(classPrefix + '__description', [layout])}} {{prefix}}-class-description">
38-
<block wx:if="{{content}}">{{ content }}></block>
38+
<block wx:if="{{content}}">{{ content }}</block>
3939
<slot name="content" />
4040
</view>
4141
<view class="{{_.cls(classPrefix + '__extra', [layout])}} {{prefix}}-class-extra">

0 commit comments

Comments
 (0)