DEV Community

Discussion on: 3 tips for scaling large Vue.js application

Collapse
 
maxpou profile image
Maxence Poutord

Thanks!
I like the module approach because you can work in a specific part of the application without having to worry about the rest. Everything is isolated, the communication between module is almost nonexistent.
The only thing shared across the whole application is the design system and the common store (logged in user, permissions...).

In my company, we've modules since a while and all new incomers seems to be happy with :)