VueTube/NUXT/components/dialogBase.vue

28 lines
552 B
Vue
Raw Normal View History

2022-04-19 14:03:46 +00:00
<template>
<v-card class="dialog-base">
2022-05-05 05:32:02 +00:00
<v-expand-transition>
<slot name="reveal"></slot>
</v-expand-transition>
2022-04-19 14:03:46 +00:00
<div class="toolbar-container">
<v-toolbar color="background" flat>
<slot name="header"></slot>
</v-toolbar>
<v-divider></v-divider>
</div>
<div class="dialog-body background">
<slot></slot>
</div>
</v-card>
</template>
<style lang="sass">
.dialog-base
display: flex
flex-direction: column
height: 100%
.dialog-body
overflow-y: auto
height: 100%
</style>