diff --git a/src/Vue/doc/index.rst b/src/Vue/doc/index.rst
index 3f19e3afa9b..14a85f8dbae 100644
--- a/src/Vue/doc/index.rst
+++ b/src/Vue/doc/index.rst
@@ -169,6 +169,60 @@ used for all the Vue routes:
.. _using-with-asset-mapper:
+Keep properties are reactive
+----------------------------
+
+All Vue component properties are reactive up to the Stimulus controller `props` value.
+
+Value changes are two-way:
+
+* Any changes of the Stimulus component `props` value will
+ reactively pass new values to the Vue component without re-creating it,
+ as would be the case when passing props between Vue components.
+
+* Any changes to the properties in the Vue component,
+ if those properties are or replicate the behavior of models,
+ will change the Stimulus controller `props` value.
+
+.. code-block:: javascript
+
+ // assets/vue/controllers/Likes.vue
+
+