[Vuejs]-How to pass data in vuejs using axios header

0👍

Did you config the axios in main.js correctly? like this:

import axios from 'axios'
Vue.prototype.$axios = axios

If you did, you should use it like this.$axios.post()

Leave a comment