Feat: clean home

This commit is contained in:
Bertrand Benjamin 2021-08-10 09:16:21 +02:00
parent 78bb4cb1ff
commit a3cd3864ce

View File

@ -1,19 +1,17 @@
<template> <template>
<h1>Home</h1> <h1>Home</h1>
<button @click="writeData" ></button>
<section id="selector"> <section id="selector">
<month-selector> <month-selector/>
</month-selector>
</section> </section>
<div id="content"> <div id="content">
<section id="months"> <section id="months">
<h2> Mois </h2> <h2> Mois </h2>
<create-month></create-month> <create-month/>
<months-list></months-list> <months-list/>
</section> </section>
<section id="stats"> <section id="stats">
<h2>Résumé</h2> <h2>Résumé</h2>
<highlights></highlights> <highlights/>
</section> </section>
</div> </div>
</template> </template>
@ -38,9 +36,6 @@ export default {
computed: { computed: {
}, },
methods: { methods: {
...mapActions('config', {
'writeData': 'writeData',
}),
...mapActions('travail', { ...mapActions('travail', {
'loadMonths': 'loadMonths', 'loadMonths': 'loadMonths',
}), }),