mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-16 07:50:50 +08:00
16 lines
315 B
Vue
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> |