From c1808669e1c46b276befffd9bfb6c652c9ecf858 Mon Sep 17 00:00:00 2001 From: Leonardo Silveira Date: Sun, 20 Feb 2022 23:35:00 -0300 Subject: [PATCH] Update reactivity-utilities.md --- src/api/reactivity-utilities.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/reactivity-utilities.md b/src/api/reactivity-utilities.md index 4afc095241..0ea701264c 100644 --- a/src/api/reactivity-utilities.md +++ b/src/api/reactivity-utilities.md @@ -41,7 +41,7 @@ Returns the inner value if the argument is a ref, otherwise return the argument ## toRef() -Can be used to create a ref for a property on a source reactive object. The created ref is synced with its source property: mutating the source property will update the ref, and vice-versa. +Can be used to create a ref for a property on a source reactive object. The created ref is synced with its source property: mutating the source property will update the ref, and vice-versa. **unless the source property is a [component property](./sfc-script-setup.html#defineprops-defineemits)** - **Type**