mirror of https://github.com/abpframework/abp.git
2 changed files with 14 additions and 2 deletions
@ -0,0 +1,12 @@ |
|||
namespace Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme.Themes.Basic |
|||
{ |
|||
public partial class MainLayout |
|||
{ |
|||
private bool IsCollapseShown { get; set; } |
|||
|
|||
private void ToggleCollapse() |
|||
{ |
|||
IsCollapseShown = !IsCollapseShown; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue