All Questions
11 questions
0
votes
1
answer
249
views
Issue implementing google autocomplete in vue.js
I'm trying to use google auto complete in vue.js with laravel but it is giving me error :
[Vue warn]: Error in mounted hook: "ReferenceError: google is not defined"
found in
---> <...
0
votes
1
answer
386
views
Laravel / Vuejs Linked Share
I want to share my current page (If laravel) or share post (if VUE js). I have added the og tags in head. Image and title is getting shared but description not.
Is there anything which i need to add ...
-1
votes
3
answers
6k
views
set and get request without refresh page
I have this code in my view
@if($order->accept == 1)
<script>
window.setTimeout(function () {
window.location.href = "http://localhost:8000/confirmed/{{$order->id}}";
}, ...
0
votes
0
answers
338
views
How to get Vue.js function data in Laravel-5.4 blade template after adding extra input fields with jQuery
got this calculation table initially just one row with simple calculation from price multiply quantity.
var app=new Vue({
el: "#app",
data: {
value: '',
quantity: '...
2
votes
0
answers
113
views
Laravel Request facade NOT getting FormData
I trying to save a picture from vuejs frontend to laravel backend. I used jQuery Ajax to sent the form data.
var mydata = new FormData();
mydata.append('mypic', blob);
$.ajax(myurl, {
...
0
votes
1
answer
3k
views
Vue Js not updating DOM first time with updated array
I want to make a image preview when upload images.
I was able to get the path of image in an array, but the array does not update the first time when I upload an image.
When check the vue devtools,...
0
votes
1
answer
829
views
How to wait v-for and then execute slick slider
I have the laravel 5.3 installed and vuejs component, here's the code
<template>
<div class="row">
<div class="col-md-3" v-for="item in options">
<other-...
1
vote
1
answer
3k
views
Why cant' I trigger custom events in vue.js?
I have a local database that will be updated with pusher. This database is stored in JSON and the component will load and filter out what is not needed, making it impossible to add a watcher to the ...
0
votes
1
answer
172
views
How can I use jquery in response ajax vue.js 2?
My component vue is like this :
<script>
export default {
...
methods: {
deleteImageProduct(event) {
const payload = {id: this.productId}
...
0
votes
1
answer
1k
views
JQuery Plugins in VUE with Laravel Mix
In my webpack.mix.js I have something like this:
// vue components
mix.js('resources/assets/js/app.js', 'public/js');
// scripts which I need
mix.scripts([
'resources/assets/js/jquery-2.2.4.min....
0
votes
1
answer
314
views
In laravel SPA, I use the DataTables , when I use laravel's vue component,vue also require jquery, so the DataTables can't be load correctly
In laravel SPA, When I use the DataTables which depends on jQuery, when I use laravel's vue component,vue also require jquery, so the DataTables can't be load correctly, because loading jquery twice....