Started on dialog stack

This commit is contained in:
Stefan Zermatten
2018-10-02 08:51:04 +02:00
parent c46f8c5171
commit e9d5e85e75
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<template>
<transition
v-on:before-enter="beforeEnter"
v-on:enter="enter"
v-on:after-enter="afterEnter"
v-on:enter-cancelled="enterCancelled"
v-on:before-leave="beforeLeave"
v-on:leave="leave"
v-on:after-leave="afterLeave"
v-on:leave-cancelled="leaveCancelled"
>
<v-card>
<v-toolbar></v-toolbar>
<v-layout></v-layout>
<v-card-actions></v-card-actions>
</v-card>
</transition>
</template>

View File

@@ -0,0 +1,18 @@
<template>
<v-layout class="dialog-stack" column aligned-center justified-center>
<div class="backdrop"></div>
<div class="dialog-sizer">
<v-card
class="dialog"
v-for="dialog in dialogs"
:key="dialog.key"
>
<component :is="component"></component>
</v-card>
</div>
</v-layout>
</template>
<script>
</script>