as you can already read in the headline my question is all about symfony (6) and vuejs (3). I want to create an application that has the ability to add certain features via bundles. In theory, this will look like this:
foo/bar
-> main application
foo/dashboard
-> adds a new dashboard
foo/customers
-> adds a UI for what ever :P
In this example foo/bar
serves the backend (navbar, login etc) and foo/dashboard
adds an additional dashboard and foo/customers
is another ui element ...
Of course this is just an example to better describe what I mean.
I really want to use vuejs for the "frontend" part.
And there comes my question:
Is it possible to spread vuejs files accross multiple bundles?
Has anyone of you an idea how I could solve that problem?
Thanks in advance.