Install Vue.js 3 on Laravel 10 Project: A Comprehensive Guide

preview_player
Показать описание

CloudWays Promo Code: CWT20
Promo Discount: 20% off for three months

Follow me:

Playlists:
Рекомендации по теме
Комментарии
Автор

Install Vue.js 3 on Laravel 10 Project: A Comprehensive Guide

tonyxhepaofficial
Автор

very helpful . please do a series of vue3 and laravel10. thank you sir

kenjohnsiosan
Автор

I have a question. Some Vuejs project needed to run the "npm run build" to build the files for production use but you didn't run it in your tutorial. Is it necessary to run that or not? Still a bit confuse how Vuejs is working with Laravel.

joshjuntilla
Автор

Amazing tutorial. Please can you make e video about hot to install a template, where to put assets, how to structure header footer sidebar etc.

dopevideos
Автор

Hi buddy, if I wanted to compile app.js to work under the `public/js/app.js` folder and be able to reference it in the typical `<script src="{{ asset('js/app.js') }}"></script>` way, how would I do it?
Another question, is it mandatory to use Vite? I think the `Vite` component is for easy development, but what if I don't want to use it?
Could you make a video solving these questions? Regards and thank you very much.

eltiopacote
Автор

Thanks i was looking for this for long time beacuse i wasnt sure about directories. Now everything is clear for me thanks :)

eugenfelipe
Автор

Interesting.
But now, how to manage routes, install pinia and etc?

AntonioCabralNumberOne
Автор

thank you sir for this great tutorial video

Rajendra_Sing
Автор

Thanks for this video! very useful. I would like to know what's the main difference between using vue within laravel project like this via app.js VS using vue as a standalone application and using Laravel REST API to perform CRUD?

thesparkdev
Автор

I wonder what operation system is, I think is linux, but the distro?

Neptun
Автор

Thanks for your help, this helped me tremendously.

JaimeOliver-js
Автор

audio is awfull it plays only on the left speaker

PotatoonHV
Автор

Sir can i @yield next blade ? Tutorail need Sir!

khainghtoo
Автор

Thanks, finally i found tutorial that works for me (σ≧▽≦)σ

kyung
Автор

For those that can't use the alias, i have this code working in vite.config.js:

Don't know why but without the @ in alias is not working..

import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

import { fileURLToPath, URL } from 'node:url'

export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
vue()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
vue: 'vue/dist/vue.esm-bundler.js',
}
}
});

el_niño_maka