为什么在 vue.js 项目中安装 inertia.js 时出现 'install peer dependencies' 错误?
Why am i getting 'install peer dependencies' error when installing inertia.js within a vue.js project?
我想在 vue.js 应用程序中使用 inertia.js,但在按照默认设置说明操作时出现错误:
npm install @inertiajs/inertia @inertiajs/inertia-vue3
错误:
@inertiajs/inertia-vue3@0.5.2 requires a peer of vue@^3.0.0 but none is installed. You must install peer dependencies yourself.
我已经尝试过以前的版本并单独安装 vue,但仍然出现相同的错误。我错过了什么?谢谢
对于遇到相同警告消息的任何人,运行 此命令用于安装对等依赖项并修复警告:npm install --save-dev "vue@^3.0.0"
我想在 vue.js 应用程序中使用 inertia.js,但在按照默认设置说明操作时出现错误:
npm install @inertiajs/inertia @inertiajs/inertia-vue3
错误:
@inertiajs/inertia-vue3@0.5.2 requires a peer of vue@^3.0.0 but none is installed. You must install peer dependencies yourself.
我已经尝试过以前的版本并单独安装 vue,但仍然出现相同的错误。我错过了什么?谢谢
对于遇到相同警告消息的任何人,运行 此命令用于安装对等依赖项并修复警告:npm install --save-dev "vue@^3.0.0"