2021-10-09 18:09:06 +02:00
|
|
|
<template>
|
|
|
|
<div class="flex h-full px-1 overflow-hidden">
|
2021-11-07 02:31:46 +01:00
|
|
|
<covers-group-cover :name="series" :book-items="bookItems" :width="60" :height="60" />
|
2021-10-09 18:09:06 +02:00
|
|
|
<div class="flex-grow px-2 seriesSearchCardContent h-full">
|
|
|
|
<p class="truncate text-sm">{{ series }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
series: String,
|
|
|
|
bookItems: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {}
|
|
|
|
},
|
|
|
|
computed: {},
|
|
|
|
methods: {},
|
|
|
|
mounted() {}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.seriesSearchCardContent {
|
|
|
|
width: calc(100% - 80px);
|
|
|
|
height: 60px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
</style>
|