I am studying Vue.js (3).
I have a component which is used a lot of time (in a loop). The render is something like that :
This component makes a get (Axios) when it is created. So if I have 10 loops, I have 10 gets which return the same thing.
I try to make only 1 call (at the first component) and not the other calls, without the use of vuex. Is it possible in Vue.js and how to do that ? (I tried "mounted" instead of "created", without success).
