mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
21 lines
449 B
Vue
21 lines
449 B
Vue
<template>
|
|
<concerned-groups></concerned-groups>
|
|
<social-issues-acc></social-issues-acc>
|
|
<location></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",
|
|
components: {
|
|
ConcernedGroups,
|
|
SocialIssuesAcc,
|
|
Location
|
|
}
|
|
}
|
|
</script>
|