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,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>