mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-20 21:34:14 +08:00
17 lines
302 B
Vue
17 lines
302 B
Vue
<!-- 迷你模式布局 -->
|
|
<template>
|
|
<div class="mini-layout">
|
|
<mini-play-bar />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import MiniPlayBar from '@/components/player/MiniPlayBar.vue';
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mini-layout {
|
|
@apply w-full h-full bg-transparent;
|
|
}
|
|
</style>
|