This commit is contained in:
advplyr 2021-08-17 17:01:11 -05:00
commit 6930e69b55
106 changed files with 26925 additions and 0 deletions

21
client/pages/index.vue Normal file
View file

@ -0,0 +1,21 @@
<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>