91 questions
1
vote
0
answers
62
views
Error: Module '"vue"' has no exported member 'ref', 'computed'. etc
Does anyone experience this issue? I have laravel + vue 3 project and I recently use typescript. I installed these,
"typescript": "^5.9.3",
"vue-tsc": "^2.2.12"
...
0
votes
1
answer
271
views
Laravel Vue Update page prop of user data After axios post
I have a custom column inside by user's table called avail_balance. When making a transaction, I want the available balance to update on the frontened WITHOUT having to reload the page. So after an ...
0
votes
0
answers
307
views
ERR_CONNECTION_REFUSED error in running Laravel and Vue
When I use Laravel 10 and vue3, I get the following error when running the local server
What is the cause and how can it be fixed?
Windows 11 and laragon operating system
`This site can’t be ...
0
votes
1
answer
2k
views
How can I get the FullCalendar vue3 component to refresh?
I'm using the FullCalendar vue3 component with Laravel Breeze/Vue, but I haven't been able to get the calendar to refresh when needed. I'd like the calendar to refresh after a select element changes ...
2
votes
1
answer
1k
views
How to debug unfriendly errors in Vue production build
I am developing a Laravel/Vuejs(3) app. For error capturing it was decided to use Sentry.
The problem is some of the errors in Sentry log are very unfriendly and have no usable stack trace for ...
0
votes
0
answers
122
views
v-model not updating data from Parent to child
I Have 2 Component. 1 Is Component Form as a parent, 1 another is 3 textarea and input.
But when i submit form method post, the validation from laravel send result error, if reward_type.product, ...
0
votes
0
answers
100
views
No matching service worker detected even though I have a service worker and no PWA icon
i have try o convert laravel+vue.js to pwa. i have create manifest.json used workbox-cli for service worker. all install correctly but got error No matching service worker detected even though I have ...
0
votes
1
answer
75
views
My datePicker is not working when i click after i empelment select with vue | Laravel - js
im new at Laravel And i have this problem when i use vue for select another data My date picker stopped working and when i click on it is not shown ,
this is the HTML code :
<div ...
0
votes
1
answer
534
views
router-link-active not applied to matching routes [duplicate]
I am currently in my Vue learning journey. I have come across a situation where I need to show my link as active for matching route too. For example: I have route /programs which shows Program link as ...
0
votes
1
answer
525
views
How to import LaravelVuePagination library in Vue3 Script Setup
When I try to import the library using script setup it doesn't work.
<script setup>
import LaravelVuePagination from "laravel-vue-pagination";
.....
<script>
Documentation has ...
1
vote
1
answer
528
views
Can login or register only with Firefox using Sanctum API authentication (CSRF token mismatch)
I am developing an SPA with Laravel 9, Vuejs 3 and Sanctum. I am newbie to vue and to Sanctum and I use the sanctum API authentication instead of the token authentication.
At this stage I am in dev ...
0
votes
1
answer
2k
views
Blank page is showing laravel and vue
Info
Using laravel and vue project
After installing composer install and npm install blank page is showing
Laravel 8, Vue [email protected], PHP 8 and ubuntu 20
Project location /www/html/project
Start the ...
0
votes
1
answer
195
views
Vue :src is not displaying image, but shows in DOM
<template>
<div>
<Header></Header>
<div class=" flex justify-center items-center" v-if="!item && !product">
<div class=&...
0
votes
0
answers
444
views
Select2 is not working on dynamically added field in Vue.js
In my vue laravel application ...i have dynamicllay added some select option by onclick function.
For the intial select option select2 is working fine but when i am trying to added more field ...
0
votes
2
answers
6k
views
`Cannot read properties of undefined (reading 'component')`
error: Cannot read properties of undefined (reading 'component')
i am working vue.js3 + laravel8
I'm trying to register my reused my-button component as a global component
vue.js3 + lorevel8
my app.js
...
4
votes
2
answers
15k
views
Vue 3, Uncaught TypeError: Vue.use is not a function
I am trying to upgrade the Laravel project's frontend into Vue 3 from vue 2.
During the process, I faced one issue
Uncaught TypeError: Vue.use is not a function
I don't know what the problem is, ...
0
votes
1
answer
5k
views
How to get auth token automatically in laravel and vue?
I am using laravel passport for authentication in my laravel and vue.js ecommerce project.
After successful login, I want to redirect user to his/her dashboard.
Here is the vue dashboard page:
<...
0
votes
2
answers
548
views
Change the index of an array in array push
In the application, we implemented the laravel-vue-pagination and in our pagination our columns are checkbox and paid amount(input field) where the checkbox is what user want to pay the item.
Once the ...
0
votes
1
answer
835
views
How to use router-link in vue js?
I am a beginner to laravel-vue and I have a problem with router-link when I get data from the database to view, all things work correctly, but when I set the path to router link, it does not work.
The ...
1
vote
0
answers
681
views
Show PDF File on Vue Component Laravel VueJS Project
I Have Project With Upload PDF file into public directory and I will show that file like a google drive PDF viewer
Can anybody help me how can I do That ?
My project using Laravel 8 and VueJs 2
thank
0
votes
1
answer
1k
views
How can i add / change multiple select option dynamically usign vuejs from same form
I have shared my code below.
<template>
<div class="productUnitPrice">
<div class="row">
<h4>Product Bundle</h4>
...
0
votes
1
answer
54
views
Can't pass bcrypted value to a laravel blade vue
I'm trying to pass a bcrypt value from my controller to my model and then to my view, the bcrypt is : $2y$10$jTlSwN9nLTGSoaljl2ZIJu8wsbY2StYUJGjWz.7LUx6K20ATLj/m2,
as I passed it into my laravel blade'...
1
vote
0
answers
251
views
How to Programmatically append slots in vuejs app
I have a requirement to use vue js slot to inject the content anywhere in the dom.
The component is going to have props as below -
1. in: The target element. Should be able to accept a string selector,...
0
votes
1
answer
432
views
Validating using vform in Vue Js
am using Vue Js and Laravel in my application. My code has products and images. I am able to upload images using axios but when I add vform to validate all my images , no image is passed to the ...
0
votes
0
answers
278
views
Dynamically updating the passed parameter in the vue component
I have component:
<g :title="computeString"></g>
(standart element)
I use computed property to update it
computeString:{
get: function () {
console.log(this.cage....