Tabs
Tabs are a partial functionality of Bootstrap Navs. The Bocons Tag Helper capsuled these pretty component to easy create tabbable regions.
<tabs>
<tabs-pane bc-header="Home">
<p>
Consequat occaecat ullamco amet non eiusmod nostrud dolore ...
</p>
</tabs-pane>
<tabs-pane bc-header="Profile">
...
</tabs-pane>
<tabs-pane bc-header="Settings">
...
</tabs-pane>
</tabs>
Tabs Configuration <tabs>
Pills
Use the bc-pills
attribute to render the tabs as pills.
<tabs bc-pills="true">
<tabs-pane bc-header="Home">
...
</tabs-pane>
<tabs-pane bc-header="Profile">
...
</tabs-pane>
<tabs-pane bc-header="Settings">
...
</tabs-pane>
</tabs>
Pane Configuration <tabs-pane>
Header Mandatory
Use the bc-header
attribute to define a title for the tab.
Active
By default the first tab is active on page load. If you want to modify that, use the bc-active
attribute to activate another tab on startup.
<tabs>
<tabs-pane bc-header="Home">
...
</tabs-pane>
<tabs-pane bc-header="Profile" bc-active="true">
...
</tabs-pane>
<tabs-pane bc-header="Settings">
...
</tabs-pane>
</tabs>