Register directive in app

This commit is contained in:
Ramon Wenger 2023-12-19 20:23:43 +01:00
parent 50b19c6405
commit ba2964d884
1 changed files with 2 additions and 0 deletions

View File

@ -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;