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

Remove outer card

parent afd51c38
No related branches found
No related tags found
2 merge requests!352Draft: Resolve "Add dialog with each lesson's students",!350Resolve "Add simple course book list"
Pipeline #168150 failed
...@@ -7,26 +7,24 @@ ...@@ -7,26 +7,24 @@
:enable-edit="false" :enable-edit="false"
> >
<template #default="{ items }"> <template #default="{ items }">
<v-card class="my-6 mx-3"> <v-list-item
<v-list-item v-for="day in groupDocsByDay(items)"
v-for="day in groupDocsByDay(items)" two-line
two-line >
> <v-list-item-content>
<v-list-item-content> <v-list-item-title>{{ $d(day[0], "short") }}</v-list-item-title>
<v-list-item-title>{{ $d(day[0], "short") }}</v-list-item-title> <v-list>
<v-list> <!-- I know slice copies the array. But show me something better. -->
<!-- I know slice copies the array. But show me something better. --> <v-list-item v-for="doc in day.slice(1)">
<v-list-item v-for="doc in day.slice(1)"> <v-card class="my-2">
<v-card class="my-2"> <documentation
<documentation :documentation="doc"
:documentation="doc" />
/> </v-card>
</v-card> </v-list-item>
</v-list-item> </v-list>
</v-list> </v-list-item-content>
</v-list-item-content> </v-list-item>
</v-list-item>
</v-card>
</template> </template>
</c-r-u-d-iterator> </c-r-u-d-iterator>
</template> </template>
......
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