mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-19 05:04:59 +00:00
18 lines
358 B
Vue
18 lines
358 B
Vue
<template>
|
|
<concerned-groups></concerned-groups>
|
|
<social-issues-acc></social-issues-acc>
|
|
</template>
|
|
|
|
<script>
|
|
import ConcernedGroups from './components/ConcernedGroups.vue';
|
|
import SocialIssuesAcc from './components/SocialIssuesAcc.vue';
|
|
|
|
export default {
|
|
name: "App",
|
|
components: {
|
|
ConcernedGroups,
|
|
SocialIssuesAcc
|
|
}
|
|
}
|
|
</script>
|