mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
34 lines
646 B
Vue
34 lines
646 B
Vue
<template>
|
|
<household></household>
|
|
<concerned></concerned>
|
|
<dates></dates>
|
|
<confirmation></confirmation>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import { mapState } from 'vuex';
|
|
import Concerned from './components/Concerned.vue';
|
|
import Household from './components/Household.vue';
|
|
import Dates from './components/Dates.vue';
|
|
import Confirmation from './components/Confirmation.vue';
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Concerned,
|
|
Household,
|
|
Dates,
|
|
Confirmation,
|
|
},
|
|
computed: {
|
|
// for debugging purpose
|
|
// (not working)
|
|
//...mapState({
|
|
// 'concerned', 'household', 'positions'
|
|
// })
|
|
}
|
|
}
|
|
|
|
</script>
|