How-to question: Where to put commonly used .js files in Quasar directory structure?
-
I’m studying the directory structure for Quasar projects at https://quasar.dev/quasar-cli/cli-documentation/directory-structure .
I’m wondering about the following simple question: As part of my app, I have developed quite a few commonly used .js files, which contain things like constant definitions, helper functions, data structures to be loaded, etc…
Almost all of these files are Node modules, exporting stuff. Those are imported both by my Quasar components in \src\pages and by MyLayout.vue in \src\layouts.
What is the recommended way where to put those files in the directory structure? I’m aware I can always add new sub-folders under \src, but is there a convention/best practice to follow for such sources?
-
@Mickey58 i would say none, it’s for devs to decide how they structure other files and folders of their project. you can register an alias for sub-folders you create for easy imports https://quasar.dev/quasar-cli/cli-documentation/handling-webpack#Adding-Webpack-aliases.