feat: add default to custom transition
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Dominik Pschenitschni 2024-06-18 17:39:23 +02:00 committed by konrad
parent ff5ee515f9
commit 1977a7bee0

View File

@ -6,9 +6,11 @@
</template>
<script setup lang="ts">
defineProps<{
name: 'flash-background' | 'fade' | 'width' | 'modal'
}>()
withDefaults(defineProps<{
name?: 'fade' | 'flash-background' | 'width' | 'modal'
}>(), {
name: 'fade',
})
</script>
<style scoped lang="scss">