This is another Blazor component libary which supports
- Grids
- Wizards
- Forms
- Paint
Add the following references to your _Host.cshtml
<linkhref="_content/MComponents/css/fontawesome.css" rel="stylesheet" /><linkhref="_content/MComponents/css/mcomponents.css" rel="stylesheet" /><scriptsrc="_content/MComponents/js/mcomponents.js"></script>If you want to use MPaint add
<scriptsrc="_content/Blazor.Extensions.Canvas/blazor.extensions.canvas.js"></script>Add to Startup.cs:
services.AddMComponents(options =>{options.RegisterResourceLocalizer=true;options.RegisterStringLocalizer=true;});and if you want to use RequestLocalization
app.UseRequestLocalization();Add to App.razor or MainLayout.razor
<MComponentsRoot/>The documentation is pretty limited, because I'm lazy: https://github.com/manureini/MComponents/wiki
