diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue index 6f8565657..fe9804ae5 100644 --- a/front/src/components/audio/PlayButton.vue +++ b/front/src/components/audio/PlayButton.vue @@ -17,6 +17,7 @@ import PopoverItem from '~/components/ui/popover/PopoverItem.vue' interface Props extends PlayOptionsProps { + split?: boolean dropdownIconClasses?: string[] playIconClass?: string buttonClasses?: string[] @@ -39,6 +40,7 @@ interface Props extends PlayOptionsProps { } const props = withDefaults(defineProps(), { + split: false, tracks: () => [], track: null, artist: null, @@ -107,12 +109,11 @@ const title = computed(() => { }) const isOpen = ref(false) -