Skip to content

Commit 9ce57c7

Browse files
committed
fix: types
1 parent a11077a commit 9ce57c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/track/TrackList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ onMounted(() => {
4949
orderableTracks.value = props.tracks;
5050
}
5151
});
52-
const trackList = templateRef("trackList");
53-
useDraggable(trackList, orderableTracks, {
52+
const trackList = ref<HTMLOListElement>();
53+
useDraggable<TrackModel>(trackList, orderableTracks, {
5454
animation: 200,
5555
disabled: !props.reorder,
5656
ghostClass: "opacity-50",

0 commit comments

Comments
 (0)