mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-20 20:05:44 +02: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> |