dashboard/layouts/blank.vue

25 lines
351 B
Vue

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