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 @@
+
+
+
+
+
+ - {{ caMean }}
+ - CA moyen
+
+
+
+
+ - {{ caTheo }}
+ - CA des séances effectuées
+
+
+
+
+ - {{ caTheo - ca }}
+ - Non facturé
+
+
+
+
+ - {{ remuneration }}
+ - Rémunération
+
+
+
+
+ - {{ remunerationMean }}
+ - Rémunération moyenne
+
+
+
+
+ - {{ retrocession }}
+ - Rétrocession
+
+
+
+
+ - {{ retrocessionMean }}
+ - Rétrocession moyenne
+
+
+
+
+
+
+
+
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 @@
@@ -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 {}