feat: add default to custom transition
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
ff5ee515f9
commit
1977a7bee0
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user