mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
25 lines
465 B
Vue
25 lines
465 B
Vue
<template>
|
|
<div class="right-side mt-3 mt-lg-0">
|
|
<b-container>
|
|
<slot :name="name" />
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RightSide',
|
|
computed: {
|
|
name() {
|
|
switch (this.$route.path.replace(/^\/(.+?)(\/.+)?$/, '$1')) {
|
|
case 'settings':
|
|
return 'empty'
|
|
case 'community':
|
|
return 'community'
|
|
default:
|
|
return 'transactions'
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|