[Vuejs]-How do I import Axios into main.js in Vue?

0👍

Try to add axios as instance global property instead of Vue.use(axios);:

Vue.prototype.$axios=axios

then you could use it in any child component like this.$axios.get()

learn more about adding-instance-properties

Leave a comment