mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
35 lines
833 B
Vue
35 lines
833 B
Vue
<template>
|
|
<accompanying-course></accompanying-course>
|
|
<persons-associated></persons-associated>
|
|
<requestor></requestor>
|
|
<resources></resources>
|
|
<comment></comment>
|
|
<!--test></test-->
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
import AccompanyingCourse from './components/AccompanyingCourse.vue';
|
|
import PersonsAssociated from './components/PersonsAssociated.vue';
|
|
import Requestor from './components/Requestor.vue';
|
|
import Resources from './components/Resources.vue';
|
|
import Comment from './components/Comment.vue';
|
|
//import Test from './components/Test.vue';
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
AccompanyingCourse,
|
|
PersonsAssociated,
|
|
Requestor,
|
|
Resources,
|
|
Comment,
|
|
//Test
|
|
},
|
|
computed: mapState([
|
|
'accompanyingCourse'
|
|
])
|
|
};
|
|
</script>
|