Files
AlgerMusicPlayer/src/components/common/PlayBottom.vue
2023-12-21 11:26:51 +08:00

16 lines
315 B
Vue

<template>
<div class="bottom" v-if="isPlay"></div>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { useStore } from 'vuex';
const store = useStore()
const isPlay = computed(() => store.state.isPlay as boolean)
</script>
<style lang="scss" scoped>
.bottom{
@apply h-28;
}
</style>