@vitejs/plugin-vue requires vue (>=3.2.13) or @vue/compiler-sfc to be present in the dependency tree.
时间: 2023-10-25 09:16:19 浏览: 122
vite-plugin-vue-i18n:Vue I18n的快速插件
5星 · 资源好评率100%
这个错误提示是因为你使用了 `@vitejs/plugin-vue` 插件,但是你的项目中缺少 `vue` 或 `@vue/compiler-sfc` 的依赖。你需要在你的项目中安装 `vue` 或 `@vue/compiler-sfc` 的依赖。你可以执行以下命令安装:
```bash
npm install vue
```
或者
```bash
npm install @vue/compiler-sfc
```
安装完成后,重新启动你的项目即可。
阅读全文