Add dragged handler

This commit is contained in:
kolaente 2021-05-19 23:01:09 +02:00
parent 1604f5b4aa
commit a1ee90df33
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 7 additions and 3 deletions

View File

@ -24,6 +24,7 @@
:push-on-overlap="true"
row-label-width="0"
:grid="true"
@dragend-bar="dragged($event)"
>
<g-gantt-row
v-for="(t, k) in theTasks"
@ -43,9 +44,9 @@
}]"
:highlight-on-hover="true"
>
<template #bar-label="{bar}">
<span>{{bar.label}}</span>
</template>
<!-- <template #bar-label="{bar}">-->
<!-- <span>{{ bar.label }}</span>-->
<!-- </template>-->
</g-gantt-row>
</g-gantt-chart>
@ -524,6 +525,9 @@ export default {
this.error(e, this)
})
},
dragged(e) {
console.log(e)
},
},
}
</script>