cancel no payment

This commit is contained in:
2024-10-21 18:02:22 +08:00
parent 60b609ac26
commit c07257bb44
16 changed files with 337 additions and 227 deletions

View File

@@ -50,7 +50,7 @@ const props = defineProps<{
songs: SongsInfo[]
canEdit?: boolean
isSelf: boolean
extraButtom?: (song: SongsInfo) => VNodeChild[]
extraButton?: (song: SongsInfo) => VNodeChild[]
}>()
watch(
() => props.songs,
@@ -380,7 +380,7 @@ function createColumns(): DataTableColumns<SongsInfo> {
}),
]
: null,
props.extraButtom?.(data),
props.extraButton?.(data),
],
)
},