This commit is contained in:
j3d1 2024-05-09 22:52:01 +02:00
parent 5b0ad7b520
commit 7f8aee935e
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<template>
Settings
</template>
<script>
import {mapActions, mapState} from 'vuex';
import Table from '@/components/Table';
export default {
name: 'Settings',
components: {Table},
computed: mapState(['events']),
methods: mapActions(['changeEvent']),
};
</script>
<style scoped>
</style>