Merge pull request #443 from Quinoid/multiple-avatar

This commit is contained in:
Shariq Ansari 2024-12-25 19:41:28 +05:30 committed by GitHub
commit e8f679f72e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,5 +48,5 @@ const props = defineProps({
default: 'md',
},
})
const reverseAvatars = computed(() => props.avatars.reverse())
const reverseAvatars = computed(() => [...props.avatars].reverse())
</script>