Added seniors page
This commit is contained in:
@@ -51,7 +51,6 @@ export default {
|
||||
methods: {
|
||||
formatTime,
|
||||
async fetchEvents() {
|
||||
console.log(this.config);
|
||||
try {
|
||||
const response = await axios.post('/events/filter',
|
||||
this.config
|
||||
|
||||
25
src/content/SeniorsContent.vue
Normal file
25
src/content/SeniorsContent.vue
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user