diff --git a/docs/content/2.components/3.layout-group.md b/docs/content/2.components/3.layout-group.md index 6a9e2b0..77d328f 100644 --- a/docs/content/2.components/3.layout-group.md +++ b/docs/content/2.components/3.layout-group.md @@ -23,10 +23,14 @@ Controls how the layout group inherits properties from its parent group. It can ## `Slots` -### `default`: The default slot receives forceRender function: +`default`: The default slot receives forceRender function: - forceRender: A function that, when called, forces the slot Motion component to calculate its layout. +::alert{type="warning" icon="lucide:triangle-alert"} + When a `Motion` component is wrapped by `LayoutGroup`, its update will trigger layout updates for all `Motion` components under the `LayoutGroup`, so it's better to trigger the `Motion` update instead of calling forceRender +:: + ```vue