Panel element
Example snippet:
<BaseHamburger
@click="togglePanel"
:active="showPanel"
/>
<BasePanel
v-if="showPanel"
v-on:close="togglePanel"
>
<h2>Panel example</h2>
</BasePanel>
Attributes
| attribute | description | type | accepted values | default |
|---|---|---|---|---|
| active | set the state to active | Boolean | - | false |
| position | set the panel position | String | left / right | right |