move test in a test component, clean requestor component

This commit is contained in:
2021-05-07 16:28:33 +02:00
parent 44c9a65505
commit de0e3f7dfd
4 changed files with 87 additions and 56 deletions

View File

@@ -2,6 +2,7 @@
<accompanying-course></accompanying-course>
<persons-associated></persons-associated>
<requestor></requestor>
<test></test>
</template>
<script>
@@ -10,13 +11,15 @@ import { mapState } from 'vuex'
import AccompanyingCourse from './components/AccompanyingCourse.vue';
import PersonsAssociated from './components/PersonsAssociated.vue';
import Requestor from './components/Requestor.vue';
import Test from './components/Test.vue';
export default {
name: 'App',
components: {
AccompanyingCourse,
PersonsAssociated,
Requestor
Requestor,
Test
},
computed: mapState([
'accompanyingCourse'