Marquitos.AspNetCore.Components.JSInterop
1.0.12
dotnet add package Marquitos.AspNetCore.Components.JSInterop --version 1.0.12
NuGet\Install-Package Marquitos.AspNetCore.Components.JSInterop -Version 1.0.12
<PackageReference Include="Marquitos.AspNetCore.Components.JSInterop" Version="1.0.12" />
paket add Marquitos.AspNetCore.Components.JSInterop --version 1.0.12
#r "nuget: Marquitos.AspNetCore.Components.JSInterop, 1.0.12"
// Install Marquitos.AspNetCore.Components.JSInterop as a Cake Addin #addin nuget:?package=Marquitos.AspNetCore.Components.JSInterop&version=1.0.12 // Install Marquitos.AspNetCore.Components.JSInterop as a Cake Tool #tool nuget:?package=Marquitos.AspNetCore.Components.JSInterop&version=1.0.12
Marquitos.Blazor
Marquitos Blazor Components is an open source library designed for WebAssembly. The main goal of this library is to create simple and usefull components. Some of them are based just on Bootstrap 5 CSS but enriched with animation motions to make a nice fluid user experience.
Marquitos Blazor Components library is composed by the following components.
Components
Usage
Add the latest Marquitos.AspNetCore.Components
nuget package to your project references:
<ItemGroup>
...
<PackageReference Include="Marquitos.AspNetCore.Components" Version="1.0.x" />
</ItemGroup>
On configure method add the AddMarquitosComponents()
to your pipeline:
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
...
builder.Services.AddMarquitosComponents(o => {
o.GlobalTheme = AspNetCore.Components.Enums.Theme.Bootstrap;
});
await builder.Build().RunAsync();
}
On _Imports.razor
add the following using clauses:
...
@using Marquitos.AspNetCore.Components.Enums
@using Marquitos.AspNetCore.Components.Web
Then you are ready to go:
<NavigationView IsBackButtonVisible="true">
<MenuItems>
<NavMenu/>
</MenuItems>
<Frame>
<div class="content px-4">
@Body
</div>
</Frame>
</NavigationView>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Components.Web (>= 6.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Marquitos.AspNetCore.Components.JSInterop:
Package | Downloads |
---|---|
Marquitos.AspNetCore.Components
Marquitos Blazor Components is an open source library designed for WebAssembly. The main goal of this library is to create simple and usefull components. Some of them are based just on Bootstrap 5 CSS but enriched with animation motions to make a nice fluid user experience. |
GitHub repositories
This package is not used by any popular GitHub repositories.