Skip to content
Snippets Groups Projects
Commit a2ba6354 authored by permcu's avatar permcu
Browse files

Implement StatisticsPersonalNotesList with mock-data

parent d9374a43
No related branches found
No related tags found
1 merge request!361Resolve "Add statistics page for absences"
<template>
<v-card>
<v-virtual-scroll
:items="personalNotes"
height="100"
item-height="50"
>
<template v-slot:default="{ item }">
<v-list-item :key="item">
<v-list-item-content>
<v-list-item-title>
<!-- new_personal_note.documentation.course.groups.FORALL.shortName -->
5a
<!-- new_personal_note.documentation.subject/amends.subject -->
<!-- in subject-chip -->
Ma
<v-spacer />
<!-- new_personal_note.documentation.datetimeStart.toDate() -->
01.01.2031
</v-list-item-title>
<v-list-item-subtitle>
<!-- new_personal_note.note -->
Hier hat der Lehrer was notiert.
</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
<v-divider></v-divider>
</template>
</v-virtual-scroll>
</v-card>
</template>
<script>
export default {
name: "StatisticsPersonalNotesList",
data() {
return {
personalNotes: [1, 2, 3, 4],
};
},
// Mock for personalNotesQuery
// apollo: {
// personalNotes: {
// query: XXXX,
// },
// },
};
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment