Added seniors page

This commit is contained in:
Torsten Schulz
2024-07-10 16:09:45 +02:00
parent 2b9d11f849
commit 8b32182102
2 changed files with 25 additions and 1 deletions

View File

@@ -51,7 +51,6 @@ export default {
methods: { methods: {
formatTime, formatTime,
async fetchEvents() { async fetchEvents() {
console.log(this.config);
try { try {
const response = await axios.post('/events/filter', const response = await axios.post('/events/filter',
this.config this.config

View File

@@ -0,0 +1,25 @@
<template>
<div class="some-page">
<ContentComponent :link="currentLink" />
</div>
</template>
<script>
import ContentComponent from '@/components/ContentComponent.vue';
export default {
name: 'SomePage',
components: {
ContentComponent,
},
computed: {
currentLink() {
return this.$route.path;
},
},
};
</script>
<style scoped>
</style>