Vuex and Axios in asyncData
问题 I want to access my Vuex data in asyncData but I can't. Also I can't seem to be able to use axios module in asyncData. I tried a lot. pages/index.vue export default { asyncData() { //in my project there's a lot more code here but i think this is enough let id = this.$store.state.id //i know i should prob use getter but no //here i want to do an axios req with this var "id" but axios doesnt work return axios.get(`url${id}`) .then(...) //not gonna write it out here } } store/index.js export