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/default.vue
2022-10-17 19:26:56 +02:00

29 lines
510 B
Vue

<template>
<v-app dark>
<v-app-bar fixed app>
<v-toolbar-title v-text="title" />
</v-app-bar>
<v-main>
<v-container fill-height>
<Nuxt />
</v-container>
</v-main>
<v-footer :absolute="!fixed" app>
<span>&copy; {{ new Date().getFullYear() }}</span>
</v-footer>
<ToastComponent />
</v-app>
</template>
<script>
export default {
name: 'DefaultLayout',
data() {
return {
fixed: false,
title: 'IU Quiz App',
}
}
}
</script>