@code { private Task ShowTitle() { SwalService.Show(new SwalOption() { Category = SwalCategory.Success, Title = "我是 Title" }); return Task.CompletedTask; } private Task ShowContent() { SwalService.Show(new SwalOption() { Category = SwalCategory.Success, Content = "我是 Content" }); return Task.CompletedTask; } }