Home > Blockchain >  I want to use vue.js on Laravel 9 but it doesn't work with me
I want to use vue.js on Laravel 9 but it doesn't work with me

Time:03-14

I've used the following codes:

composer require laravel/ui

php artisan ui vue --auth

npm install

npm run dev

CodePudding user response:

I've fixed the problem following the steps below

composer require laravel/breeze --dev

php artisan breeze:install

npm install npm run dev php artisan migrate

after that

php artisan breeze:install vue

then

npm install

npm run dev

CodePudding user response:

You are doing it wrong. It is changed to breeze. read it.

php artisan breeze:install
 
npm install
npm run dev
php artisan migrate

After that

php artisan breeze:install vue
  • Related