This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iu-quiz-app/layouts/empty.vue
2022-10-30 11:28:50 +01:00

21 lines
370 B
Vue

<template>
<v-app :style="{ background: $vuetify.theme.themes[theme].background }">
<v-main>
<Nuxt />
</v-main>
<FooterApp />
<ToastComponent />
</v-app>
</template>
<script>
export default {
name: 'EmptyLayout',
layout: 'empty',
computed: {
theme () {
return (this.$vuetify.theme.dark) ? 'dark' : 'light'
}
}
}
</script>