1
0

feat: add default to custom transition

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> </template>
<script setup lang="ts"> <script setup lang="ts">
defineProps<{ withDefaults(defineProps<{
name: 'flash-background' | 'fade' | 'width' | 'modal' name?: 'fade' | 'flash-background' | 'width' | 'modal'
}>() }>(), {
name: 'fade',
})
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">