From 0db4b41b5ac725ee6d60a1822c207f3ef0e89532 Mon Sep 17 00:00:00 2001 From: Julien Finet Date: Wed, 5 Feb 2025 23:45:39 +0100 Subject: [PATCH] doc(nested_reactive): add Vue3 only feature --- examples/vue3/nested_reactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vue3/nested_reactive.py b/examples/vue3/nested_reactive.py index 8480e97..b1f58a3 100644 --- a/examples/vue3/nested_reactive.py +++ b/examples/vue3/nested_reactive.py @@ -86,7 +86,7 @@ def update_nested_3(nested_3, **kwargs): ], ) - # New deep reactive + # New deep reactive (Vue3 only) with client.DeepReactive("nested_2") as dr: with html.Div("Nested 2 - {{ nested_2.a }}"): html.Input(type="range", v_model="nested_2.a", min=1, max=10, step=1)