I am using Vue.js and Vite to create a project and encountered a problem when running.
[plugin:vite:import-analysis] 无法解析从“srccomponentsStudent.vue”中的导入“axios”。文件是否存在?
What I have tried is shown below. I have installed npm i axios, but why do I get this error and also imported import axios from 'axios';
<script> import Vue from 'vue'; import axios from 'axios'; Vue.use(axios) </script>
You forgot to install axios. Try executing
npm install axios --save