Skip to content
Advertisement

How can I move directives from main.js into an external file Vue 3

I would like to have a clean main.js and for this I want to move the directives into an external file. That is, to do something like

JavaScript

and in an external file

JavaScript

My version of course does not work, how to do it correctly

Advertisement

Answer

define them in a separate file like :

JavaScript

then import them in main.js and loop through them to declare them globally :

JavaScript
Advertisement