audiobookshelf/client/pages/index.vue
2021-09-01 16:01:15 -05:00

20 lines
338 B
Vue

<template>
<div class="page" :class="streamAudiobook ? 'streaming' : ''">
<app-book-shelf-toolbar />
<app-book-shelf />
</div>
</template>
<script>
export default {
computed: {
streamAudiobook() {
return this.$store.state.streamAudiobook
}
},
methods: {},
mounted() {},
beforeDestroy() {}
}
</script>