useStore
此钩子可用于访问 Svelte Flow 的内部存储。
此钩子仅在高级用例中才需要。只有在没有其他方法可以访问内部状态时,才应使用它。对于许多常见用例,可以使用专用钩子,例如 useConnection
, useNodes
等。
<script lang="ts">
import { useStore } from '@xyflow/svelte';
// lots of props that you pass to the <SvelteFlow> component end up in the internal store.
// Here we are accessing the current connectionMode.
const { connectionMode } = useStore();
</script>
签名
名称 | 类型 |
---|---|
#返回 |
|
# Svelte Flow 存储属性 | SvelteFlowStore |