I'm facing difficulties while trying to incorporate axios into my Vue project using Typescript. Below is a snippet of my main.ts file:
import axios from 'axios'
Vue.prototype.$axios = axios
axios.defaults.baseURL = 'http://192.168.1.225:8088'
Additionally, here is a screenshot of my Vue code.
This is my first time working with Typescript in Vue. I previously used axios in JavaScript without any issues. How can I seamlessly integrate axios within the context of Typescript?
Thank you for your time and assistance.