feature/projects-all-the-way-down #3323

Merged
konrad merged 123 commits from feature/projects-all-the-way-down into main 2023-05-30 10:09:40 +00:00
Showing only changes of commit c56787443f - Show all commits

View File

@ -47,7 +47,9 @@ const props = defineProps<{
canCollapse?: boolean,
level?: number,
konrad marked this conversation as resolved Outdated

Add types for emit

Add types for emit

Done

Done
}>()
const emit = defineEmits(['update:modelValue'])
const emit = defineEmits<{
(e: 'update:modelValue', projects: IProject[]): void
konrad marked this conversation as resolved Outdated

These options should either contain all dragOptions or be defined inline

These options should either contain all dragOptions or be defined inline

Moved it all inline.

Moved it all inline.
}>()
const drag = ref(false)
const dragOptions = {