mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-14 07:54:50 +02:00
19 lines
286 B
Vue
19 lines
286 B
Vue
|
<template>
|
||
|
<bookshelf-lazy-bookshelf page="series-books" :series-id="seriesId" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
asyncData({ params }) {
|
||
|
return {
|
||
|
seriesId: params.id
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|