ERROR Error: @vitejs/plugin-vue requires vue (>=3.2.13) or @vue/compiler-sfc to be present in the dependency tree.
时间: 2023-10-25 13:23:44 浏览: 213
vite-plugin-vue-i18n:Vue I18n的快速插件
5星 · 资源好评率100%
这个错误提示是因为你使用的 Vite 插件 @vitejs/plugin-vue 需要依赖 Vue 3.2.13 或者 @vue/compiler-sfc,但是你的项目中没有安装它们中的任何一个。你需要在项目中安装它们来解决这个问题。你可以使用以下命令来安装最新版本的 Vue:
```
npm install vue@latest --save
```
或者安装 @vue/compiler-sfc:
```
npm install @vue/compiler-sfc --save-dev
```
安装完成后,重新运行你的项目即可。
阅读全文