perf(Teachers): update list styles

This commit is contained in:
thehrz 2023-07-06 21:01:39 +08:00
parent 41418a64a9
commit 072d136bd3
No known key found for this signature in database
GPG Key ID: 683658B4CAC43158

View File

@ -15,13 +15,12 @@ interface Teachers {
<v-list lines="three"> <v-list lines="three">
<v-list-item v-for="item in Object.keys(_teachers)" :key="item" :title="item"> <v-list-item v-for="item in Object.keys(_teachers)" :key="item" :title="item">
<v-expansion-panels multiple variant="popout"> <v-expansion-panels multiple>
<v-expansion-panel <v-expansion-panel v-for="teacher in teachers[item]" :key="teacher.name" :title="teacher.name">
v-for="teacher in teachers[item]" <v-expansion-panel-text>
:key="teacher.name" <p v-html="teacher.description" />
:title="teacher.name" </v-expansion-panel-text>
:text="teacher.description" </v-expansion-panel>
/>
</v-expansion-panels> </v-expansion-panels>
</v-list-item> </v-list-item>
</v-list> </v-list>