Error: @vitejs/plugin-vue requires vue (>=3.2.13) or @vue/compiler-sfc to be present in the dependen
时间: 2023-11-30 21:38:19 浏览: 126
plugin-auto-install:此模块已移动,现在可通过@ rollupplugin-auto-install https获得
这是一个错误提示,它表示在使用 @vitejs/plugin-vue 插件时,需要安装 vue 版本大于等于 3.2.13 或者安装 @vue/compiler-sfc。你可以通过以下命令安装最新版本的 vue:
```
npm install vue@latest
```
或者安装 @vue/compiler-sfc:
```
npm install @vue/compiler-sfc
```
阅读全文