Browse Source

Update index.tsx

lex 2 years ago
parent
commit
d94c61f9f5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/music/component/song/index.tsx

+ 2 - 1
src/views/music/component/song/index.tsx

@@ -129,7 +129,8 @@ export default defineComponent({
                 name={IconMore}
                 size={18}
                 style={{ marginLeft: '12px  ' }}
-                onClick={() => {
+                onClick={(e: MouseEvent) => {
+                  e.stopPropagation()
                   isMore.value = true
                   moreData.value = n
                 }}