Add:Lazy bookshelf

This commit is contained in:
advplyr 2021-12-04 19:56:29 -06:00
parent 446c6756ed
commit 37d3021302
43 changed files with 2264 additions and 666 deletions

View file

@ -0,0 +1,19 @@
<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>