repod/src/components/Player/Bar.vue

32 lines
418 B
Vue
Raw Normal View History

2023-08-24 20:29:11 +00:00
<template>
2023-08-24 21:19:54 +00:00
<fragment>
<div v-if="episode" class="footer">
2023-08-24 21:59:55 +00:00
{{ 'oui' }}
2023-08-24 21:19:54 +00:00
</div>
</fragment>
2023-08-24 20:29:11 +00:00
</template>
<script>
export default {
name: 'Bar',
components: {},
computed: {
2023-08-24 21:19:54 +00:00
episode() {
return this.$store.state.player.episode
2023-08-24 20:29:11 +00:00
},
},
}
</script>
<style scoped>
2023-08-24 21:19:54 +00:00
.footer {
2023-08-24 21:59:55 +00:00
background-color: red;
bottom: 0;
height: 5rem;
right: 0;
2023-08-24 20:29:11 +00:00
position: absolute;
width: 100%;
2023-08-24 21:59:55 +00:00
z-index: 2000;
2023-08-24 20:29:11 +00:00
}
</style>