parent
f5fe306085
commit
7163dcde1a
@ -1,28 +0,0 @@
|
|||||||
@page "/example-tab-set"
|
|
||||||
|
|
||||||
<TabSet>
|
|
||||||
<Tab Title="First tab">
|
|
||||||
<h4>Greetings from the first tab!</h4>
|
|
||||||
|
|
||||||
<label>
|
|
||||||
<input type="checkbox" @bind="showThirdTab" />
|
|
||||||
Toggle third tab
|
|
||||||
</label>
|
|
||||||
</Tab>
|
|
||||||
|
|
||||||
<Tab Title="Second tab">
|
|
||||||
<h4>Hello from the second tab!</h4>
|
|
||||||
</Tab>
|
|
||||||
|
|
||||||
@if (showThirdTab)
|
|
||||||
{
|
|
||||||
<Tab Title="Third tab">
|
|
||||||
<h4>Welcome to the disappearing third tab!</h4>
|
|
||||||
<p>Toggle this tab from the first tab.</p>
|
|
||||||
</Tab>
|
|
||||||
}
|
|
||||||
</TabSet>
|
|
||||||
|
|
||||||
@code {
|
|
||||||
private bool showThirdTab;
|
|
||||||
}
|
|
Loading…
Reference in new issue