bootstrap-layout
Version:
Bootstrap layout with sidebar navigation, sidebar skins, sidebar transition, custom scrollbars, sidebar menus and other advanced features and utilities
16 lines (14 loc) • 396 B
HTML
{% markdown %}
```js
/* Load Bootstrap Layout */
import BootstrapLayout from 'bootstrap-layout'
BootstrapLayout.sidebar.show('#my-sidebar')
// Or get a sidebar instance
import { sidebar } from 'bootstrap-layout'
sidebar.show('#my-sidebar')
// Or get the Sidebar constructor
import { Sidebar } from 'bootstrap-layout'
let sidebar = new Sidebar()
sidebar.show('#my-sidebar')
```
{% endmarkdown %}