flaschengeist-frontend/src/App.vue

25 lines
317 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>
2019-12-20 13:01:36 +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>
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
export default {
name: 'App',
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
components: {
},
2019-12-20 13:01:36 +00:00
2019-12-21 07:20:25 +00:00
data: () => ({
//
}),
};
</script>