This commit is contained in:
2020-07-30 18:39:37 +02:00
parent f95fe42c7f
commit e21bc0782c
11 changed files with 101 additions and 55 deletions
-19
View File
@@ -1,19 +0,0 @@
<template>
<div class="home">
<TableView :items="log" />
</div>
</template>
<script>
import Vuex from 'vuex';
import TableView from '../components/TableView.vue';
export default {
components: { TableView },
computed: { ...Vuex.mapState ({ log: (state) => state.log }) },
mounted () {
this.get_log ();
},
methods: { ...Vuex.mapActions ({ get_log: 'get_log' }) }
};
</script>