From ba2964d884fceca107f1fd2c374bf6725ebd4663 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Tue, 19 Dec 2023 20:23:43 +0100 Subject: [PATCH] Register directive in app --- client/src/setup/directives.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/setup/directives.ts b/client/src/setup/directives.ts index 1aa8fb21..c12abe53 100644 --- a/client/src/setup/directives.ts +++ b/client/src/setup/directives.ts @@ -1,8 +1,10 @@ import autoGrow from '@/directives/auto-grow'; import clickOutside from '@/directives/click-outside'; +import highlight from '@/directives/highlight'; const registerDirectives = (app: any) => { app.directive('click-outside', clickOutside); app.directive('auto-grow', autoGrow); + app.directive('highlight', highlight); }; export default registerDirectives;