diff --git a/src/guide/essentials/template-refs.md b/src/guide/essentials/template-refs.md index c5b72ffb9e..bf41e099d2 100644 --- a/src/guide/essentials/template-refs.md +++ b/src/guide/essentials/template-refs.md @@ -346,3 +346,24 @@ export default { In the above example, a parent referencing this component via template ref will only be able to access `publicData` and `publicMethod`. + +
+ +## Reactivity of Refs {#reactivity-of-refs} + +Note that `this.$refs` is not reactive. For a reactive ref, you can use `useTemplateRef`: + +```vue + + + +``` +