Added Rendering Components

This commit is contained in:
2024-12-30 09:30:14 +01:00
parent 4dcce6238f
commit 92ec684066
4 changed files with 40 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ const props = defineProps({
</script>
<template>
<span v-if="props.row.infoData.streetNumber">{{props.row.infoData.streetNumber}},</span>
<span v-if="props.row.infoData.street">{{props.row.infoData.street}},</span>
<span v-if="props.row.infoData.special">{{props.row.infoData.special}},</span>
<span v-if="props.row.infoData.zip">{{props.row.infoData.zip}},</span>
<span v-if="props.row.infoData.city">{{props.row.infoData.city}}</span>