UI/Components/VerticalMenu.razor
@using Sandbox;
@using Sandbox.UI;
@inherits Panel
@namespace Sandbox

<root>
    @Options
</root>

@code
{

    [Parameter] public RenderFragment Options { get; set; }

    /// <summary>
    /// The currently selected value of any sub-menus
    /// </summary>
    [Parameter] public object Value { get; set; }

}