feat: add minimal task wizard

This commit is contained in:
kolaente 2022-09-15 18:04:58 +02:00
parent 6e5501a5f1
commit 4f38f25d11
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
5 changed files with 105 additions and 3 deletions

View file

@ -9,7 +9,7 @@
@close="$router.back()"
:loading="loading"
>
<div class="p-4">
<div :class="{'p-4': padding}">
<slot />
</div>
@ -72,6 +72,10 @@ defineProps({
type: Boolean,
default: false,
},
padding: {
type: Boolean,
default: true,
},
})
const emit = defineEmits(['create', 'primary', 'tertiary'])