Sousmargot/src/components/caOnPeriod.vue

38 lines
796 B
Vue

<template>
<div class="hightlights">
<hightlight-sum :months="months" attribute="ca"/>
<hightlight-sum :months="months" attribute="remuneration"/>
<hightlight-sum :months="months" attribute="caPersoUntouch"/>
</div>
<revenus-chart/>
</template>
<script>
import { mapGetters } from 'vuex'
import RevenusChart from '../components/graphs/RevenusChart.vue'
import hightlightSum from './hightlightSum.vue'
export default {
name: 'caOnPeriod',
components: {
RevenusChart: RevenusChart,
hightlightSum: hightlightSum,
},
data () {
return {}
},
computed: {
...mapGetters('travail', {
months: "months",
}),
},
mounted () {
},
methods: {
},
}
</script>
<style scoped>
</style>