mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
4c93480036
* feat(module: modal): add resizable paramter * fix: class and id in modal component usage
18 lines
403 B
C#
18 lines
403 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
@if (_hasAdd)
|
|
{
|
|
<CascadingValue Value="@this.Id" Name="DialogWrapperId">
|
|
<Dialog @ref="_dialog"
|
|
Config="Config"
|
|
Visible="@Visible"
|
|
Style="@Style"
|
|
Class="@Class"
|
|
Id="@Id"
|
|
>
|
|
@ChildContent
|
|
</Dialog>
|
|
</CascadingValue>
|
|
}
|