language switch component in authlayout_gdd

This commit is contained in:
ogerly 2021-05-12 09:37:12 +02:00
parent bb63eaeab4
commit 58faba9709

View File

@ -1,16 +1,19 @@
<template>
<div class="wrapper">
<div class="main-content">
<div class="main-content mt-4">
<router-view></router-view>
<language-switch class="text-center mb-5 mt-5" />
<content-footer v-if="!$route.meta.hideFooter"></content-footer>
</div>
</div>
</template>
<script>
import ContentFooter from './ContentFooter.vue'
import LanguageSwitch from '@/components/LanguageSwitch.vue'
export default {
components: {
ContentFooter,
LanguageSwitch,
},
}
</script>