1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-03-05 02:21:11 +01:00
audiobookshelf/client/pages/index.vue

31 lines
577 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 {
asyncData({ redirect }) {
redirect('/library')
},
data() {
return {}
},
computed: {
streamAudiobook() {
return this.$store.state.streamAudiobook
}
},
methods: {},
mounted() {},
beforeDestroy() {}
}
</script>