audiobookshelf/client/pages/index.vue
Mark Cooper a0c60a93ba Init
2021-08-17 17:01:11 -05:00

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>