While working on my Vue application, I encountered an issue with implementing a POST call using axios. The axios method seems to be missing.
It's strange because I am able to use axios.get() without any problems. However, axios.post() is not available to me.
https://i.sstatic.net/jHGBS.png
Upon checking the package.json file, I confirmed that axios is listed as a dependency:
"dependencies": {
"axios": "^0.21.4",
Can anyone offer insight into what might be causing this issue?
Cheers, Michael