vue_accourse: initialize new submodule courseLocation

This commit is contained in:
2021-08-02 13:43:28 +02:00
parent e2e38a9ce8
commit 714d8b841c
6 changed files with 90 additions and 2 deletions

View File

@@ -12,6 +12,9 @@
</td>
<td>
<ul class="record_actions">
<button-location
v-if="!participation.endDate">
</button-location>
<li>
<on-the-fly
v-bind:type="participation.person.type"
@@ -47,11 +50,13 @@
<script>
import OnTheFly from 'ChillMainAssets/vuejs/_components/OnTheFly.vue';
import ButtonLocation from '../ButtonLocation.vue';
export default {
name: 'PersonItem',
components: {
OnTheFly
OnTheFly,
ButtonLocation
},
props: ['participation'],
emits: ['remove', 'close'],