Home > database >  Laravel Framework 8.83.7 Vue ui is not installing properly on my new project
Laravel Framework 8.83.7 Vue ui is not installing properly on my new project

Time:04-12

I can't seem to be able to install vue to my laravel

This is the steps I do:

  1. run composer require laravel/ui

  2. Install Vue php artisan ui vue

  3. Install Vue with auth php artisan ui vue --auth

  4. run npm install && npm run dev

The error I encounter

enter image description here

Any idea?

CodePudding user response:

Try updating vue if already installed

npm update vue-loader

To install you can use this

npm i vue-loader
  • Related