[Vuejs]-Service Layer in Vue.JS?

0👍

Yes, if you’re using Vuex, you can place Service components that wrap your Axios calls, which are then called from the vuex store.

So the hierarchy goes Component -> Store -> Service Component -> Axios

Leave a comment