repod/src/components/Player/Bar.vue

29 lines
395 B
Vue
Raw Normal View History

2023-08-24 20:29:11 +00:00
<template>
<div v-if="currentPlayingUrl" class="oui">
{{ 'oui' }}
</div>
</template>
<script>
export default {
name: 'Bar',
components: {},
computed: {
currentPlayingUrl() {
return this.$store.state.currentPlayingUrl
},
},
}
</script>
<style scoped>
.oui {
position: absolute;
bottom: 0;
width: 100%;
height: 4rem;
background-color: red;
z-index: 1001;
}
</style>