I want to start using vue.js on a large application. The application will have 50+ modules with each module having multiple components.
My plan is to create sub folders under the components folder to act as modules, with each folder containing it's related component files.
I don't want the router/index.js file to have hundreds of routes defined in it, as this will be unmanageable.
It would be nice to put a routes.js file in each module folder.
Is this possible and how or is there a better way.