mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
22 lines
567 B
Vue
22 lines
567 B
Vue
<template>
|
|
<concerned-groups v-if="hasPerson"></concerned-groups>
|
|
<social-issues-acc v-if="hasSocialIssues"></social-issues-acc>
|
|
<location v-if="hasLocation"></location>
|
|
</template>
|
|
|
|
<script>
|
|
import ConcernedGroups from './components/ConcernedGroups.vue';
|
|
import SocialIssuesAcc from './components/SocialIssuesAcc.vue';
|
|
import Location from './components/Location.vue';
|
|
|
|
export default {
|
|
name: "App",
|
|
props: ['hasSocialIssues', 'hasLocation', 'hasPerson'],
|
|
components: {
|
|
ConcernedGroups,
|
|
SocialIssuesAcc,
|
|
Location
|
|
}
|
|
}
|
|
</script>
|