gradido/frontend/src/views/Layout/AuthLayout_gdd.vue
2021-03-24 06:05:05 +01:00

49 lines
933 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
},
data() {
return {
year: new Date().getFullYear(),
pageClass: 'login-page'
};
},
computed: {
title() {
return `${this.$route.name} Page`;
}
},
methods: {
setLocale(locale) {
this.$i18n.locale = locale
//this.$router.push({
// params: { lang: locale }
//})
//this.hideDropdown()
}
}
};
</script>
<style lang="scss">
.card { background-color:rgba(136, 130, 131, 0.3); }
</style>