将 PlayMusic 组件迁移至 layout/RightButton 并重构成通用右下角按钮组件, 提取音乐播放逻辑到独立 hook `usePlayMusic`,优化模态框提示逻辑并统一滚动行为。
14 lines
327 B
Vue
14 lines
327 B
Vue
<script setup lang='ts'>
|
|
import { ChevronUp } from 'lucide-vue-next'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="fixed z-50 flex items-center justify-center w-10 h-10 rounded-full shadow-lg cursor-pointer right-12 bottom-12 bg-slate-700 hover:bg-slate-600">
|
|
<ChevronUp />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang='scss' scoped>
|
|
|
|
</style>
|