@vitejs/plugin-vue kann nicht im Laravel-Projekt installiert werden
P粉070918777
P粉070918777 2023-11-01 12:57:32
0
2
678

Ich habe ein neues Laravel-Projekt erstellt. Um Vue JS nutzen zu können, habe ich versucht, dieses Paket zu installieren,

@vitejs/plugin-vue

Aber das hat mir eine Reihe von Fehlern beschert,

npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead. npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: @vitejs/plugin-vue@3.0.0 npm ERR! Found: vite@2.9.14 npm ERR! node_modules/vite npm ERR! dev vite@"^2.9.11" from the root project npm ERR! peer vite@"^2.9.9" from laravel-vite-plugin@0.4.0 npm ERR! node_modules/laravel-vite-plugin npm ERR! dev laravel-vite-plugin@"^0.4.0" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer vite@"^3.0.0" from @vitejs/plugin-vue@3.0.0 npm ERR! node_modules/@vitejs/plugin-vue npm ERR! @vitejs/plugin-vue@"^3.0.0" from the root project npm ERR! npm ERR! Conflicting peer dependency: vite@3.0.0 npm ERR! node_modules/vite npm ERR! peer vite@"^3.0.0" from @vitejs/plugin-vue@3.0.0 npm ERR! node_modules/@vitejs/plugin-vue npm ERR! @vitejs/plugin-vue@"^3.0.0" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force, or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution.

Ich habe die folgenden Schritte befolgt,

1.laravel new {proj_name}. 2. npm install vue@next. 3. npm install. 4. After that I created a vue file and imported into app.js (resources/js/app.js). 5. I went to the blade file and cleared all -> hit `!` for emmet snippet, created a div with id #app, and add @vite('resources/js/app.js').

Ich gebe eine Fehlermeldung aus, die besagt, dass @vitejs/plugin-vue installiert wird. Aber wenn ich versuche, es zu installieren, werden diese Fehler ausgegeben.

P粉070918777
P粉070918777

Antworte allen (2)
P粉593536104

如果其他人遇到此问题,请将其直接添加到您的 package.json 中,然后运行 npm i:

“@vitejs/plugin-vue”:“^3.0.1”

    P粉864872812
    npm install vue@next vue-loader@next npm i @vitejs/plugin-vue@2.3.3 composer require innocenzi/laravel-vite:0.2.* npm i -D vite vite-plugin-laravel

    vite.config.js

    import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import laravel from 'vite-plugin-laravel' export default defineConfig({ plugins: [ vue(), laravel({ input: [ 'resources/css/app.css', 'resources/js/app.js', ], refresh: true, }) ] })

    也许你需要更改app.js

    import {createApp} from 'vue/dist/vue.esm-bundler.js';

    或者对于异步组件添加defineAsyncComponent

    import {createApp, defineAsyncComponent} from 'vue/dist/vue.esm-bundler.js';

    @vite() 留空

      Neueste Downloads
      Mehr>
      Web-Effekte
      Quellcode der Website
      Website-Materialien
      Frontend-Vorlage
      Über uns Haftungsausschluss Sitemap
      Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!