This commit is contained in:
2024-07-02 21:39:30 +02:00
parent a414b22e01
commit afc3e2fed1
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,4 @@
<script lang="ts" setup>
import type { Placement } from '@popperjs/core'
import type { PropType } from 'vue'
defineProps({
@@ -12,7 +11,7 @@ defineProps({
required: true
},
position: {
type: String as PropType<Placement>
type: String as PropType<'top' | 'right' | 'bottom' | 'left'>
}
})
</script>