mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
39 lines
790 B
Vue
39 lines
790 B
Vue
<template>
|
|
<div class="overview">
|
|
<BCol>
|
|
<div v-if="isHumhubActive">
|
|
<BRow>
|
|
<card-circles />
|
|
</BRow>
|
|
</div>
|
|
<div v-if="isGmsActive">
|
|
<BRow>
|
|
<card-user-search />
|
|
</BRow>
|
|
</div>
|
|
</BCol>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
// import CommunityNews from '@/components/Overview/CommunityNews'
|
|
import CardCircles from '@/components/Overview/CardCircles'
|
|
import CardUserSearch from '@/components/Overview/CardUserSearch'
|
|
import CONFIG from '@/config'
|
|
|
|
export default {
|
|
name: 'Overview',
|
|
components: {
|
|
CardCircles,
|
|
CardUserSearch,
|
|
},
|
|
computed: {
|
|
isGmsActive() {
|
|
return CONFIG.GMS_ACTIVE === true
|
|
},
|
|
isHumhubActive() {
|
|
return CONFIG.HUMHUB_ACTIVE === true
|
|
},
|
|
},
|
|
}
|
|
</script>
|