示例其他

useSvelteFlow

useSvelteFlow 钩子使您可以访问 Svelte Flow 存储,并提供一些用于更新视口的函数。

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

<h1>Hello {data}</h1>

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