Skip to content

Commit 6436db0

Browse files
committed
doc: 文档格式化
1 parent 570258a commit 6436db0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/BootstrapBlazor.Server/Components/Samples/Transfers.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
<div class="col-12 col-sm-6">
1111
<BootstrapInputGroup>
1212
<BootstrapInputGroupLabel DisplayText="IsWrapItem"></BootstrapInputGroupLabel>
13-
<Switch @bind-Value="_isWrapItem"></Switch>
13+
<Switch @bind-Value="@_isWrapItem"></Switch>
1414
</BootstrapInputGroup>
1515
</div>
1616
<div class="col-12 col-sm-6">
1717
<BootstrapInputGroup>
1818
<BootstrapInputGroupLabel DisplayText="IsWrapItemText"></BootstrapInputGroupLabel>
19-
<Switch @bind-Value="_isWrapItemText"></Switch>
19+
<Switch @bind-Value="@_isWrapItemText"></Switch>
2020
</BootstrapInputGroup>
2121
</div>
2222
<div class="col-12 col-sm-6">
@@ -27,7 +27,7 @@
2727
</div>
2828
</section>
2929
<Transfer TValue="string" Items="@Items"
30-
IsWrapItem="_isWrapItem" IsWrapItemText="_isWrapItemText" ItemWidth="@_itemWidth"
30+
IsWrapItem="@_isWrapItem" IsWrapItemText="@_isWrapItemText" ItemWidth="@_itemWidth"
3131
OnSelectedItemsChanged="@OnSelectedItemsChanged" />
3232
<ConsoleLogger @ref="Logger" />
3333
</DemoBlock>

0 commit comments

Comments
 (0)