2024-01-16 21:12:07 +00:00
|
|
|
<template>
|
2024-08-27 14:41:58 +00:00
|
|
|
<NcAppContent :class="{ episode }">
|
2024-01-16 21:12:07 +00:00
|
|
|
<slot />
|
|
|
|
</NcAppContent>
|
|
|
|
</template>
|
|
|
|
|
2024-09-13 06:56:04 +00:00
|
|
|
<script lang="ts">
|
2024-01-16 21:12:07 +00:00
|
|
|
import { NcAppContent } from '@nextcloud/vue'
|
2024-08-09 09:38:00 +00:00
|
|
|
import { mapState } from 'pinia'
|
2024-09-13 06:56:04 +00:00
|
|
|
import { usePlayer } from '../../store/player.ts'
|
2024-01-16 21:12:07 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'AppContent',
|
|
|
|
components: {
|
|
|
|
NcAppContent,
|
|
|
|
},
|
|
|
|
computed: {
|
2024-08-09 09:38:00 +00:00
|
|
|
...mapState(usePlayer, ['episode']),
|
2024-01-16 21:12:07 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2024-08-26 14:10:30 +00:00
|
|
|
.episode {
|
2024-04-29 22:48:47 +00:00
|
|
|
padding-bottom: 6rem;
|
|
|
|
}
|
2024-01-16 21:12:07 +00:00
|
|
|
</style>
|