diff --git a/docs/src/guide/controlled-flow.md b/docs/src/guide/controlled-flow.md index 158f0a9b9..568d5f528 100644 --- a/docs/src/guide/controlled-flow.md +++ b/docs/src/guide/controlled-flow.md @@ -82,23 +82,23 @@ removeNodes('1') ``` -## The `applyChanges` option +## The `applyDefault` option -The `applyChanges` option is a prop that can be passed to the `` component to enable or disable automatic change handling. +The `applyDefault` option is a prop that can be passed to the `` component to enable or disable automatic change handling. By setting this option to `false`, we tell Vue Flow to not apply changes automatically anymore, that way we can take control of changes and apply them manually. ```vue ``` ## `onNodesChange` / `onEdgesChange` events Vue Flow provides two events that can be used to listen to changes on nodes and edges. -These events are emitted regardless of the `applyChanges` option, so you can use them to listen to changes even if you have automatic changes enabled. +These events are emitted regardless of the `applyDefault` option, so you can use them to listen to changes even if you have automatic changes enabled. ```vue