flaschengeist-frontend/src/App.vue

25 lines
317 B
Vue

<template>
<v-app>
<router-view/>
<v-footer
app
>
<span class="px-4">&copy; {{ new Date().getFullYear()}} Studentenclub Wu 5 e.v.</span>
</v-footer>
</v-app>
</template>
<script>
export default {
name: 'App',
components: {
},
data: () => ({
//
}),
};
</script>