14 lines
213 B
Vue
14 lines
213 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
row: {
|
|
type: Object,
|
|
required: true,
|
|
default: {}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<span>{{props.row.isCompany ? 'Unternehmen' : 'Privat'}}</span>
|
|
</template>
|