mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-14 16:04:47 +02:00
28 lines
552 B
Vue
28 lines
552 B
Vue
<template>
|
|
<div class="w-full relative">
|
|
<div class="bookshelfRow h-48 flex items-end justify-around px-3 max-w-full">
|
|
<template v-for="book in books">
|
|
<cards-book-card :key="book.id" :audiobook="book" :width="108" class="mx-2" />
|
|
</template>
|
|
</div>
|
|
|
|
<div class="w-full h-4 z-40 bookshelfDivider"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
books: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|