From d2899829d4352a1c2d9efe37be4023ee2e3e6e24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alois=20Se=C4=8Dk=C3=A1r?= Date: Tue, 17 Sep 2024 23:32:02 +0200 Subject: [PATCH] docs: update comment following #2994 --- src/guide/reusability/custom-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/reusability/custom-directives.md b/src/guide/reusability/custom-directives.md index 742968f274..6b6aa435b9 100644 --- a/src/guide/reusability/custom-directives.md +++ b/src/guide/reusability/custom-directives.md @@ -104,7 +104,7 @@ It is also common to globally register custom directives at the app level: ```js const app = createApp({}) -// make v-focus usable in all components +// make v-highlight usable in all components app.directive('highlight', { /* ... */ })