From f171ffb8279ba6a76f7f79367cb5798992ab0b97 Mon Sep 17 00:00:00 2001 From: pikax Date: Tue, 9 Feb 2021 16:58:28 +0000 Subject: [PATCH 1/2] chore: fix type ::tip to :::tip --- src/guide/reactivity-fundamentals.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guide/reactivity-fundamentals.md b/src/guide/reactivity-fundamentals.md index 00c808bb5e..7f74796118 100644 --- a/src/guide/reactivity-fundamentals.md +++ b/src/guide/reactivity-fundamentals.md @@ -73,7 +73,7 @@ When a ref is returned as a property on the render context (the object returned ``` -::tip +:::tip If you don't need to access the actual object instance, you can wrap it in a reactive: ```js @@ -81,7 +81,7 @@ When a ref is returned as a property on the render context (the object returned count }) ``` -:: +::: ### Access in Reactive Objects From 74bbc4237af33052ed2a70aae0f04a547e12dd39 Mon Sep 17 00:00:00 2001 From: pikax Date: Tue, 9 Feb 2021 17:00:01 +0000 Subject: [PATCH 2/2] chore: fix nested typo --- src/guide/reactivity-fundamentals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/reactivity-fundamentals.md b/src/guide/reactivity-fundamentals.md index 7f74796118..1aef76ad43 100644 --- a/src/guide/reactivity-fundamentals.md +++ b/src/guide/reactivity-fundamentals.md @@ -77,7 +77,7 @@ When a ref is returned as a property on the render context (the object returned If you don't need to access the actual object instance, you can wrap it in a reactive: ```js - rested: reactive({ + nested: reactive({ count }) ```