BlazorTabs 1.5.0
dotnet add package BlazorTabs --version 1.5.0
NuGet\Install-Package BlazorTabs -Version 1.5.0
<PackageReference Include="BlazorTabs" Version="1.5.0" />
paket add BlazorTabs --version 1.5.0
#r "nuget: BlazorTabs, 1.5.0"
// Install BlazorTabs as a Cake Addin #addin nuget:?package=BlazorTabs&version=1.5.0 // Install BlazorTabs as a Cake Tool #tool nuget:?package=BlazorTabs&version=1.5.0
Breaking changes If you were using version 1.4.0, you must replace the using BlazorTabsComponent by BlazorNtabsin in _Imports.razor.
BlazorNTab
Tab component for Blazor
Installation
After you have installed the package add the following line in the _Imports.razor
file
@using BlazorNtabs
Paramètres
The Tab
component accepts following parameters:
- Title : tab title
It is possible to define a more complex title with styles by placing it in the tag TabHeader
then place the content in the tag ChildContent
Example of use:
<BlazorTabs>
<Tab Title="Onglet 1">
Contenu 1
</Tab>
<Tab>
<TabHeader>
<strong>onglet 2</strong>
</TabHeader>
<ChildContent>
Contenu 2
</ChildContent>
</Tab>
</BlazorTabs>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
breaking change : replace @using BlazorTabsComponent by @using BlazorNtabs in _imports.razor