Introduced EntityShow.vue Deprecated following as non standardEntity contracts, customers, vendors, projects, plants, vehicles
18 lines
467 B
Vue
18 lines
467 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
row: {
|
|
type: Object,
|
|
required: true,
|
|
default: {}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<span v-if="props.row.infoData.streetNumber">{{props.row.infoData.streetNumber}},</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>
|
|
|
|
</template>
|