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-item v-for="item in Object.keys(_teachers)" :key="item" :title="item">
<v-expansion-panels multiple variant="popout">
<v-expansion-panel
v-for="teacher in teachers[item]"
:key="teacher.name"
:title="teacher.name"
:text="teacher.description"
/>
<v-expansion-panels multiple>
<v-expansion-panel v-for="teacher in teachers[item]" :key="teacher.name" :title="teacher.name">
<v-expansion-panel-text>
<p v-html="teacher.description" />
</v-expansion-panel-text>
</v-expansion-panel>
</v-expansion-panels>
</v-list-item>
</v-list>