1
0

feat: type defineEmits for Card

This commit is contained in:
Dominik Pschenitschni 2024-07-06 12:52:38 +02:00 committed by konrad
parent 30769fb6ea
commit 043a6dd049

View File

@ -64,7 +64,9 @@ withDefaults(defineProps<{
loading: false,
})
defineEmits(['close'])
defineEmits<{
'close': []
}>()
</script>
<style lang="scss" scoped>