Home > Q&A > body text
Official example
function fetchItem (store) { return store.dispatch('FETCH_ITEMS', { ids: [store.state.route.params.id] }) }
Why not just use:
function fetchItem (store) { //发起http请求 axios({url:**}).... }
高洛峰2017-05-19 10:48:25
https://github.com/vuejs/vue-...
This is the author’s answer