mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
373 B
Vue
19 lines
373 B
Vue
<template>
|
|
<div class="main-content">
|
|
<template>
|
|
<div class="main-content">
|
|
<router-view></router-view>
|
|
<content-footer v-if="!$route.meta.hideFooter"></content-footer>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ContentFooter from './ContentFooter.vue'
|
|
export default {
|
|
components: {
|
|
ContentFooter,
|
|
},
|
|
}
|
|
</script>
|