fix: 修复壁纸展示状态下移动端菜单按钮未隐藏错误

This commit is contained in:
first19326 2023-11-03 00:47:07 +08:00
parent 1716f53864
commit 9c03de74f8

View File

@ -17,7 +17,12 @@
</section>
</div>
<!-- 移动端菜单按钮 -->
<Icon class="menu" size="24" @click="store.mobileOpenState = !store.mobileOpenState">
<Icon
class="menu"
size="24"
v-show="!store.backgroundShow"
@click="store.mobileOpenState = !store.mobileOpenState"
>
<component :is="store.mobileOpenState ? CloseSmall : HamburgerButton" />
</Icon>
<!-- 页脚 -->