mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
21 lines
341 B
Vue
21 lines
341 B
Vue
|
<template>
|
||
|
<div class="w-full h-full overflow-y-auto overflow-x-hidden px-4 py-6">
|
||
|
<tables-all-files-table :audiobook="audiobook" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
audiobook: {
|
||
|
type: Object,
|
||
|
default: () => {}
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|