UNPKG

@vue-flow/core

Version:

[![Vue flow](vue-flow.gif)](https://vueflow.dev/) ![top-language](https://img.shields.io/github/languages/top/bcakmakoglu/vue-flow) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/bcakmakoglu/vue-flow) ![GitHub last commit](

16 lines (15 loc) 626 B
export interface UseNodesInitializedOptions { includeHiddenNodes?: boolean } /** * Composable for getting the initialized state of all nodes. * * When a new node is added to the graph, it is not immediately initialized. * That's because the node's bounds are not yet known. * This composable will return false and then true when all nodes are initialized, i.e. when their bounds are known. * * @public * @param options - Options * @returns boolean indicating whether all nodes are initialized */ export declare function useNodesInitialized(options?: UseNodesInitializedOptions): import('vue').ComputedRef<boolean>