Skip to content

Instantly share code, notes, and snippets.

View tahnik's full-sized avatar
🏠
Working from home

Tahnik Mustasin tahnik

🏠
Working from home
View GitHub Profile
@tahnik
tahnik / bottom_sheet.vue
Created June 1, 2019 11:16
Material Slidable Bottom Sheet
<template>
<!-- c here means custom -->
<div class="c-bottom-sheet">
<div
:class="`overlay ${value ? 'overlay-active' : ''}`"
@click="closeSheet()"
></div>
<div :class="`content ${contentActiveClass} ${uid}`" id="bottom-sheet">
<slot></slot>
</div>