Product needs a full list of Categories so a new method was included in our API
When Product form is included in the screen and if the Full List of categories that is part of Categories Vuex State has length 0, then the component itself requests to the server the list
On Categories module every time a change is made (create, delete or update) the full list is refresh. With this we can avoid ask for a fresh list every time Product form is open.
Some characteristics:
Product needs a full list of Categories so a new method was included in our API
When Product form is included in the screen and if the Full List of categories that is part of Categories Vuex State has length 0, then the component itself requests to the server the list
On Categories module every time a change is made (create, delete or update) the full list is refresh. With this we can avoid ask for a fresh list every time Product form is open.
This will close #51