skip to Main Content

pass data from vue.js to laravel 9

Problem: internal server error while passing data from vue.js to laravel using axios I created fresh laravel project and installed breeze with vue (php artisan breeze:install vue). Then I created One menu controller and rendered menu.vue like this : public…

VIEW QUESTION

Vue 3 not rendering components (in Laravel 8)

I have a simple blade with a component inside: <section> <h1>Carousel</h1> <carousel :slides="@json($data->slides)"> </carousel> The component looks like this: <template> <fragment> <h1>My component</h1> {{ slides }} </fragment> </template> export default { props: [ 'slides' ], mounted() { console.log("mounted") } }…

VIEW QUESTION
Back To Top
Search