dashboard/layouts/unauthenticated.vue

25 lines
373 B
Vue

<script>
export default {
head() {
const theme = this.$store.getters['prefs/theme'];
return {
bodyAttrs: { class: `theme-${ theme } dashboard-body` },
title: this.$store.getters['i18n/t']('nav.title'),
};
},
};
</script>
<template>
<main>
<nuxt />
</main>
</template>
<style lang="scss" scoped>
main {
height: 100vh;
}
</style>