flaschengeist-frontend/src/App.vue

21 lines
295 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-14 21:01:24 +00:00
<router-view />
<v-footer app>
<span class="px-4">&copy; {{ new Date().getFullYear()}} Studentenclub Wu 5 e.v.</span>
</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>
export default {
name: 'App',
2019-12-20 13:01:36 +00:00
2020-01-14 21:01:24 +00:00
components: {},
2019-12-20 13:01:36 +00:00
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>