stash
This commit is contained in:
parent
5b0ad7b520
commit
7f8aee935e
3 changed files with 27 additions and 0 deletions
19
web/src/views/admin/Settings.vue
Normal file
19
web/src/views/admin/Settings.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue