示例

边缘标记

Svelte Flow 内置支持不同类型的边缘标记。也可以添加你自己的 SVG 标记

<script lang="ts">
const data: string = "world";
</script>

<h1>Hello {data}</h1>

<style>
h1 {
  font-size: 1.5rem;
}
</style>
只读