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