mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-04-14 11:36:27 +00:00
19 lines
No EOL
286 B
Vue
19 lines
No EOL
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> |