All Questions
Tagged with vue-component laravel
454 questions
0
votes
0
answers
179
views
currentRenderingInstance.ce is null when rendering Vue compoments with Inertia in production
I'm using Laravel 11 and Inertia.js with Vue to build a multi page web application. I use Coolify with nixpacks to deploy my application on a server.
When making a request, the server always returns a ...
0
votes
0
answers
123
views
Can't see any change after updateing Vue component inside Laravel Nova project
I am having issue I wasn't able to fix with googleing or stackoverflowing and its super strange one. It could easily be lack of knowledge on my side so have mercy.
I have made an application recently ...
0
votes
0
answers
59
views
Vue.js Dynamic Slots Not Rendering Content as Expected
I'm working on integrating Vue.js with Laravel to create a multilingual content management system, and I'm facing an issue with dynamic slots not rendering any content. Despite setting up everything ...
0
votes
0
answers
87
views
Displaying Vue component outside div id="app"
Is it possible to display a Vue component outside of the <div id="app">?
I am trying to display some components in my Laravel blade file, but I need help figuring out how. Could ...
0
votes
1
answer
260
views
How to connect Vue.js 3 to Laravel 10 project, send data to Vue component
I am a beginner in programming, so I have issues with connecting these two things together. I understand how they work separately, but I wanted to add reactivity to my pet project.
I had tried this ...
0
votes
1
answer
114
views
How to load external CSS, js in Vue and Laravel
i created vue layout in my components but i have problem. Actually i m using vue3 in my laravel project with breeze library. And my template needs a some js and css file and i m import like this
...
1
vote
2
answers
3k
views
How to use Quill Text Editor as a component in Vue3
1 - Installation NPM / Yarn
npm install @vueup/vue-quill@latest --save # OR yarn add @vueup/vue-quill@latest
2 - Usage in component
import { QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-...
0
votes
2
answers
310
views
Vue3-carousal plugin not showing the data in Vue component Laravel?
I have a Laravel 10(php 8.1) project in which i have install vue 3 for making a dynamic component.
Component Detail:
I have created a component for showing team members of a company with a category ...
0
votes
2
answers
629
views
Is there a good way to remove the "next" and "prev" links from Laravel Paginate API, other than removing it in the frontend?
My response looks like this:
"links": {
"first": "http:\/\/localhost:8000\/api\/tasks?page=1",
"last": "http:\/\/localhost:8000\/api\/tasks?page=...
0
votes
1
answer
888
views
Bootstrap-vue-next and Vite
I have a problem with building process. I have a modal b-modal that it's a component am using in Vuejs 3 and when I am in development I run npm run dev which is fine because there is no problem but ...
0
votes
1
answer
257
views
My modal component in Vue3 doesn't remount on page change
I have a signature modal component inside an approval component that is being used by both the shopping cart page and approval page components. When the shopping cart page is loaded, the signature ...
0
votes
1
answer
2k
views
laravel-spatie-permissions-vue permissions and roles needs a page refresh to show current values
Laravel 10 app, with Jetstream/Inertia/Vue 3.
I use laravel-spatie-permissions-vue to deal with user permissions and roles, which are assigned ok. Currently I am using default Jetstream views, so as ...
0
votes
0
answers
140
views
Vue Js Components : How To Decouple Data Sharing Between Multiple Component Instances
I Have a Side Project Which Require Me To Repeat Multiple Component Multiple Time In The Same Page
the functionality is used to get those multiples is, looping and importing like this to handle ...
0
votes
1
answer
46
views
Vue element not loading on hidden modal
I am trying to display a Vue component onto a modal controlled by semantic ui, however, the vue element is not loading/mounting. I am using Laravel & JQuery mainly with some vue elements.
I ...
0
votes
1
answer
347
views
Laravel Vue, pass data in form from component after submit
i need a little help about how to get values from a component that is in a form.
This is the form also a photo: form
`
<form @submit.prevent="form.patch(route('profile.update.account'))" ...