From 6f43c03808222fbb95cbe9105e602eafff49d661 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Wed, 4 Aug 2021 19:55:13 +0200 Subject: [PATCH] Feat: hightlights on the period --- src/App.vue | 2 +- src/components/hightlights.vue | 80 ++++++++++++++++++++++++++++++++++ src/views/home.vue | 5 ++- 3 files changed, 84 insertions(+), 3 deletions(-) create mode 100644 src/components/hightlights.vue diff --git a/src/App.vue b/src/App.vue index 6e52ad7..bcec426 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,7 +9,7 @@ import Nav from './components/nav.vue' export default { name: 'App', components: { - Nav + Nav } } diff --git a/src/components/hightlights.vue b/src/components/hightlights.vue new file mode 100644 index 0000000..7e911f3 --- /dev/null +++ b/src/components/hightlights.vue @@ -0,0 +1,80 @@ + + + + + diff --git a/src/views/home.vue b/src/views/home.vue index 29d620a..3132e14 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -12,8 +12,7 @@

Résumé

- - +
@@ -23,12 +22,14 @@ import { mapGetters, mapActions } from 'vuex' import MonthsList from '../components/MonthsUl.vue' import CreateMonth from '../components/CreateMonth.vue' import MonthSelector from '../components/monthSelector.vue' +import Highlights from '../components/hightlights.vue' export default { name: 'home', components: { MonthsList: MonthsList, CreateMonth: CreateMonth, MonthSelector: MonthSelector, + highlights: Highlights, }, data () { return {}