21 lines
370 B
Vue
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> |