mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-08 15:09:34 +01:00
22 lines
337 B
Vue
22 lines
337 B
Vue
|
<template>
|
||
|
<div class="page" :class="streamAudiobook ? 'streaming' : ''">
|
||
|
<app-book-shelf />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {
|
||
|
streamAudiobook() {
|
||
|
return this.$store.state.streamAudiobook
|
||
|
}
|
||
|
},
|
||
|
methods: {},
|
||
|
mounted() {},
|
||
|
beforeDestroy() {}
|
||
|
}
|
||
|
</script>
|