diff --git a/src/guide/composition-api-template-refs.md b/src/guide/composition-api-template-refs.md index 681fbeb761..a642610ec0 100644 --- a/src/guide/composition-api-template-refs.md +++ b/src/guide/composition-api-template-refs.md @@ -133,7 +133,7 @@ Therefore, watchers that use template refs should be defined with the `flush: 'p const root = ref(null) watchEffect(() => { - console.log(root.value) // =>
+ console.log(root.value) // =>
This is a root element
}, { flush: 'post'