-
-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
FeatureNew feature that will be added to the projectNew feature that will be added to the projectUp For GrabsThis issue is available to anyone that wants to helpThis issue is available to anyone that wants to help
Description
How to use images in menu like menu in the VS2019 Blazor default app?
i.e. how to add images in this sample?
<BlazoredMenu MenuBuilder="@MenuBuilder" />
@functions {
MenuBuilder MenuBuilder = new MenuBuilder();
protected override void OnInit()
{
MenuBuilder.AddItem(1, "Home", "/")
.AddSubMenu(2, "Sub Menu", new MenuBuilder().AddItem(1, "Counter", "counter")
.AddItem(3, "FetchData", "fetchdata");
}
}
Metadata
Metadata
Assignees
Labels
FeatureNew feature that will be added to the projectNew feature that will be added to the projectUp For GrabsThis issue is available to anyone that wants to helpThis issue is available to anyone that wants to help