mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-27 19:29:52 +08:00
24 lines
511 B
Vue
24 lines
511 B
Vue
<script lang="ts" setup>
|
|
import type { PropType } from 'vue'
|
|
|
|
// 输入参数
|
|
const props = defineProps({
|
|
history: Object as PropType<{ [key: string]: string }>,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VCardText>
|
|
<VList>
|
|
<VListItem v-for="(value, key) in props.history" :key="key">
|
|
<VListItemTitle class="font-bold text-lg">
|
|
{{ key }}
|
|
</VListItemTitle>
|
|
<div class="text-gray-500">
|
|
{{ value }}
|
|
</div>
|
|
</VListItem>
|
|
</VList>
|
|
</VCardText>
|
|
</template>
|