[Vuejs]-Uncaught TypeError: axios.ad is not a function in vue script

-2👍

You never included axios in your app. Try npm install axios then require('./axios') on the app.js file. Also, according to the axios reference manual, there’s no method named ad.

Leave a comment