AddressRenderBox created and added to PersonRenderBox, still some styling issue with address. Render options not done yet

This commit is contained in:
2021-08-17 16:14:08 +02:00
parent 1a6c0529cc
commit 7af85bc401
3 changed files with 70 additions and 44 deletions

View File

@@ -52,23 +52,12 @@
<!-- <tr>
<td>
{{ participation.person.firstName }}
{{ participation.person.lastName }}
<person-render-box
v-bind:options="options"
v-bind:participation="participation"
></person-render-box>
</td>
<td><span v-if="participation.startDate">
{{ $d(participation.startDate.datetime, 'short') }}</span>
</td>
<td><span v-if="participation.endDate">
{{ $d(participation.endDate.datetime, 'short') }}</span>
</td>
<td>
</td>
</tr> -->
<script>
@@ -83,18 +72,5 @@ export default {
},
props: ['participation'],
emits: ['remove', 'close'],
data() {
return {
PersonRenderBox: {
person : 'participation.person',
options : {
addInfo : false,
addId : true,
addAge : false,
hLevel : 1
}
}
}
}
}
</script>