mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
27 lines
659 B
Vue
27 lines
659 B
Vue
<template>
|
|
<div class="vue-component">
|
|
<h3>Parcours</h3>
|
|
<dl>
|
|
<dt>id</dt>
|
|
<dd>{{ accompanying_course.id }}</dd>
|
|
<dt>opening_date</dt>
|
|
<dd>{{ accompanying_course.opening_date }}</dd>
|
|
<dt>closing_date</dt>
|
|
<dd>{{ accompanying_course.closing_date }}</dd>
|
|
<dt>remark</dt>
|
|
<dd>{{ accompanying_course.remark }}</dd>
|
|
<dt>closing_motive</dt>
|
|
<dd>{{ accompanying_course.closing_motive }}</dd>
|
|
</dl>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AccompanyingCourse',
|
|
props: {
|
|
accompanying_course: Object
|
|
}
|
|
}
|
|
</script>
|