flaschengeist-frontend/src/App.vue

25 lines
496 B
Vue
Raw Normal View History

2019-12-20 12:45:37 +00:00
<template>
2019-12-21 07:20:25 +00:00
<v-app>
2020-01-17 00:01:10 +00:00
<TitleBar />
2020-01-14 21:01:24 +00:00
<router-view />
<v-footer app>
2020-01-17 00:01:10 +00:00
<span class="px-4"
>&copy; {{ new Date().getFullYear() }} Studentenclub Wu 5 e.v.</span
>
2020-03-05 20:16:47 +00:00
<CookieNotification />
</v-footer>
2019-12-21 07:20:25 +00:00
</v-app>
2019-12-20 12:45:37 +00:00
</template>
2019-12-21 07:20:25 +00:00
<script>
2020-01-17 00:01:10 +00:00
import TitleBar from './components/TitleBar'
2020-03-05 20:16:47 +00:00
import CookieNotification from "./components/CookieNotification";
2019-12-21 07:20:25 +00:00
export default {
name: 'App',
2020-03-05 20:16:47 +00:00
components: {CookieNotification, TitleBar },
2019-12-21 07:20:25 +00:00
data: () => ({
//
2020-01-14 21:01:24 +00:00
})
}
2019-12-21 07:20:25 +00:00
</script>