mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-01 10:29:31 +01:00
Fix typo
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user