From 15bae507bfb2856a2f2a2dbde7be1baa61d1ec49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Maurice?= <55036198+tisma95@users.noreply.github.com> Date: Thu, 26 Sep 2024 17:18:39 +0200 Subject: [PATCH] Fix base on https://github.com/vuejs/docs/pull/2994 (#3027) https://github.com/vuejs/docs/pull/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', { /* ... */ })