diff --git a/src/components/PlaylistType.vue b/src/components/PlaylistType.vue
index 8b76198..9f33acb 100644
--- a/src/components/PlaylistType.vue
+++ b/src/components/PlaylistType.vue
@@ -5,10 +5,21 @@
{{ item.name }}
@@ -17,7 +28,7 @@
class="play-list-type-showall"
:class="setAnimationClass('animate__bounceIn')"
:style="setAnimationDelay(!isShowAllPlaylistCategory ? 25 : playlistCategory?.sub.length || 100 + 30)"
- @click="isShowAllPlaylistCategory = !isShowAllPlaylistCategory"
+ @click="handleToggleShowAllPlaylistCategory"
>
{{ !isShowAllPlaylistCategory ? '显示全部' : '隐藏一些' }}
@@ -26,7 +37,7 @@