All Questions
5 questions
0
votes
1
answer
320
views
vue function dont work when browser is refreshed
my vue functions dont work when i manually refresh browser page. but works when i navigate from another vue component to this component it works fine. Please below is my code
UPDATE:
im using router-...
1
vote
0
answers
243
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,...
1
vote
3
answers
2k
views
Laravel-vuejs (Vue Router) Javascript not working in onchange url
In my project, when I move from page to page with <router-link>, JavaScript does not work, look at the image to understand what I mean.
The first time when I refresh the page, everything works, ...
1
vote
1
answer
1k
views
Default route is not working with laravel and vue
I am creating a single page application using laravel and vue. it's not loading index component on page load.
web.php
Route::get('{any}', function () {
return view('welcome');
})->where('any', '.*')...
0
votes
1
answer
292
views
Vue search customer detail based on phone number input and auto fill address
I try to take customer (name, address) based on phone number input. if customer is there then I want the name and address to auto-filled based on customer data we got. below are my code.
my form
<v-...