fix(svelte): pass dragHandle #3398

This commit is contained in:
moklick
2023-09-18 14:19:16 +02:00
parent 8f5b38b3b7
commit 087ef82618
3 changed files with 30 additions and 2 deletions
@@ -0,0 +1,19 @@
<script lang="ts">
import type { NodeProps } from '@xyflow/svelte';
type $$Props = NodeProps;
export let data: { label: string } = { label: 'Node' };
</script>
<div class="custom">
<div>{data.label}</div>
<div class="custom-drag-handle" style="width:15px;height:15px;background:#222;" />
</div>
<style>
.custom {
background: white;
padding: 10px;
}
</style>