ant-design-blazor/components/modal/Modal.razor
zxyao 6db07ad916 feat: add component modal (#167)
* feat: add component modal

* fix: adjust namespace and fix TAB keyboard bug

* fix: reset package.json to cuueernt head

* fix: remove antblazor.sln

* refactor: using c# to control the display and hiding of modal
2020-06-02 14:25:44 +08:00

10 lines
213 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
@if(_hasAdd)
{
<Dialog @ref="_dialog" Config="@BuildDialogOptions()"
Visible="@Visible" Style="@Style">
@ChildContent
</Dialog>
}