28 lines
599 B
Vue
28 lines
599 B
Vue
<template>
|
|
<div class="space-y-10">
|
|
<UpcomingEvaluations
|
|
:batch="batch.data.name"
|
|
:endDate="batch.data.evaluation_end_date"
|
|
:courses="batch.data.courses"
|
|
/>
|
|
<Assessments :batch="batch.data.name" />
|
|
<StudentHeatmap />
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import UpcomingEvaluations from '@/components/UpcomingEvaluations.vue'
|
|
import Assessments from '@/components/Assessments.vue'
|
|
import StudentHeatmap from '@/components/StudentHeatmap.vue'
|
|
|
|
const props = defineProps({
|
|
batch: {
|
|
type: Object,
|
|
default: null,
|
|
},
|
|
isStudent: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
})
|
|
</script>
|