first impl for household editor

This commit is contained in:
2021-06-02 00:32:55 +02:00
parent cd52f7e6e8
commit c6949490a4
10 changed files with 340 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
<template>
<concerned></concerned>
</template>
<script>
import Concerned from './components/Concerned.vue';
import { mapState } from 'vuex';
export default {
name: 'App',
components: {
Concerned,
},
computed: {
// for debugging purpose
// (not working)
//...mapState({
// 'concerned', 'household', 'positions'
// })
}
}
</script>