19 lines
428 B
Vue
19 lines
428 B
Vue
<template>
|
|
<section>
|
|
<channel-entries :default-cover="object.artist.cover" :is-podcast="object.artist.content_category === 'podcast'" :limit="25" :filters="{channel: object.uuid, ordering: 'creation_date'}">
|
|
</channel-entries>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import ChannelEntries from "@/components/audio/ChannelEntries"
|
|
|
|
|
|
export default {
|
|
props: ['object'],
|
|
components: {
|
|
ChannelEntries,
|
|
},
|
|
}
|
|
</script>
|