@vitejs/plugin-vue requires vue (>=3.2.13) or @vue/compiler-sfc to be present in the dependency tree.
时间: 2023-10-25 18:14:56 浏览: 184
vite-plugin-vue-i18n:Vue I18n的快速插件
5星 · 资源好评率100%
这个错误通常是因为你正在使用的版本的 Vue 不符合 `@vitejs/plugin-vue` 的要求。请确保你的 Vue 版本不低于 3.2.13 或者已经安装了 `@vue/compiler-sfc`。
你可以通过以下命令来安装最新版本的 Vue:
```
npm install vue@latest
```
如果你已经安装了 Vue,也可以通过以下命令来安装 `@vue/compiler-sfc`:
```
npm install @vue/compiler-sfc
```
安装完成后,重新运行你的应用程序,应该就能够解决这个问题了。
阅读全文