prepare new originDemand sub-component

This commit is contained in:
2021-06-25 13:44:01 +02:00
parent 662e5f967c
commit 3e83891744
4 changed files with 73 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
<h1 v-if="accompanyingCourse.step === 'DRAFT'">{{ $t('course.title.draft') }}</h1>
<h1 v-else>{{ $t('course.title.active') }}</h1>
<origin-demand></origin-demand>
<persons-associated></persons-associated>
<requestor></requestor>
<social-issue></social-issue>
@@ -19,6 +20,7 @@
import { mapState } from 'vuex'
import Banner from './components/Banner.vue';
import StickyNav from './components/StickyNav.vue';
import OriginDemand from './components/OriginDemand.vue';
import PersonsAssociated from './components/PersonsAssociated.vue';
import Requestor from './components/Requestor.vue';
import SocialIssue from './components/SocialIssue.vue';
@@ -32,6 +34,7 @@ export default {
components: {
Banner,
StickyNav,
OriginDemand,
PersonsAssociated,
Requestor,
SocialIssue,