Skip to content

Instantly share code, notes, and snippets.

@FatihGoktas
Created February 9, 2021 08:52
Show Gist options
  • Save FatihGoktas/a4ecf622b6bf211717e526ae0ea284a6 to your computer and use it in GitHub Desktop.
Save FatihGoktas/a4ecf622b6bf211717e526ae0ea284a6 to your computer and use it in GitHub Desktop.
Easy way to install : Laravel 8 + Vuejs 3
// Composer required
// Create Laravel Project
1 ) composer create-project laravel/laravel example-app
// Install Vue and Auth
2 ) composer require laravel/ui
3 ) php artisan ui vue
4 ) php artisan ui vue --auth
5 ) npm install && npm run dev
// Realtime Compile Vue Code
6 ) npm run watch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment