mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
28 lines
501 B
Vue
28 lines
501 B
Vue
<template>
|
|
<div class="page" :class="streamAudiobook ? 'streaming' : ''">
|
|
<app-book-shelf-toolbar />
|
|
<!-- <div class="flex h-full">
|
|
<app-side-rail />
|
|
<div class="flex-grow"> -->
|
|
<app-book-shelf />
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
streamAudiobook() {
|
|
return this.$store.state.streamAudiobook
|
|
}
|
|
},
|
|
methods: {},
|
|
mounted() {},
|
|
beforeDestroy() {}
|
|
}
|
|
</script>
|