renaming vuejs root dir

This commit is contained in:
2021-04-28 10:58:19 +02:00
parent 3a0c25c871
commit 4bb3eadf91
11 changed files with 31 additions and 24 deletions

View File

@@ -0,0 +1,27 @@
<template>
<accompanying-course></accompanying-course>
<persons-associated></persons-associated>
<requestor></requestor>
</template>
<script>
import { mapState } from 'vuex'
import AccompanyingCourse from './components/AccompanyingCourse.vue';
import PersonsAssociated from './components/PersonsAssociated.vue';
import Requestor from './components/Requestor.vue';
export default {
name: 'App',
components: {
AccompanyingCourse,
PersonsAssociated,
Requestor
},
computed: mapState([
'accompanying_course'
])
};
</script>
<style scoped></style>