feat: add minimal task wizard
This commit is contained in:
parent
6e5501a5f1
commit
4f38f25d11
5 changed files with 105 additions and 3 deletions
|
|
@ -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'])
|
||||
|
|
|
|||
Reference in a new issue