Navbar (Bootstrap 3)
Dependencies
Installation
import Bootstrap from './plugins/Bootstrap3';
Vue.use(Bootstrap);
Properties
Property |
Type |
Example |
Description |
Required |
brand |
string |
MyApp |
Navbar Brand |
Required |
inner-class |
string |
|
Additional classes to add to the navbar |
- |
theme |
|
"dark" or "default" (or empty) |
adds the bootstrap themes. |
Required |
Slots
Slot |
Description |
links |
Navbar left links |
links-right |
Navbar right links |
Example
<navbar brand="MyApp">
<li slot="links"><a>??</a></li>
<li slot="links-right"><a>???</a></li>
<li slot="links-right"><a href="materialize.html">Materialize</a></li>
</navbar>