mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-02 12:09:59 +08:00
refactor: 更改网页表格控件 td 为 TableCell
This commit is contained in:
parent
c23627e57c
commit
3292a9ca69
@ -8,9 +8,9 @@
|
||||
<TableColumn TItem="string" @bind-Field="@context.Type" />
|
||||
</HeaderTemplate>
|
||||
<RowTemplate>
|
||||
<td>@context.Name</td>
|
||||
<td>@context.Description</td>
|
||||
<td>@context.Type</td>
|
||||
<TableCell>@context.Name</TableCell>
|
||||
<TableCell>@context.Description</TableCell>
|
||||
<TableCell>@context.Type</TableCell>
|
||||
</RowTemplate>
|
||||
</Table>
|
||||
</div>
|
||||
|
@ -9,10 +9,10 @@
|
||||
<TableColumn TItem="string" @bind-Field="@context.ReturnValue" />
|
||||
</HeaderTemplate>
|
||||
<RowTemplate>
|
||||
<td>@context.Name</td>
|
||||
<td>@context.Description</td>
|
||||
<td>@context.Parameters</td>
|
||||
<td>@context.ReturnValue</td>
|
||||
<TableCell>@context.Name</TableCell>
|
||||
<TableCell>@context.Description</TableCell>
|
||||
<TableCell>@context.Parameters</TableCell>
|
||||
<TableCell>@context.ReturnValue</TableCell>
|
||||
</RowTemplate>
|
||||
</Table>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user