All Questions
Tagged with vue-component laravel-5
150 questions
3
votes
2
answers
2k
views
DisabledForUser Please make sure that the app id is set correctly when running npm run dev?
I'm getting this message when I run npm run dev
DisabledForUser Please make sure that the app id is set correctly.
I have imported javascript and css in the app.blade.php. Next, in the home.blade.php ...
0
votes
1
answer
773
views
Vuetify Nuxt.js : how to add Routing link in Carousels icon
js and Vuetifiy i want to add Routing link in Carousels icon. if i press icon it should open Routing link.
i tried but its not responding my link its not working
below code i tried but note worked
...
1
vote
2
answers
121
views
List of checkboxes wont update in dynamic generated array of checkboxes v-models
I have an array containing the key->value pair for a list of checkboxes. They render fine, but when you click on them nothing happens, unless I change a text input and then these checkboxes get re-...
1
vote
1
answer
1k
views
Vue.js How to Access Elements of an Object
I have an array of objects:
data: function() {
return {
customers:[],
}
},
that populates this select box:
<label>DSO Affiliation:</label>
...
-1
votes
1
answer
62
views
contents of components not updating on frontend vue.js in Laravel
I have a component when i change the content of that component it does not reflect on the browser, for that i'm running
npm update
but i'm getting following error:
npm ERR! code EINVALIDPACKAGENAME ...
0
votes
1
answer
142
views
Access the third party child component from parent component vue
I have a form component called example-component in which inside I have another third party child component for media upload called media-uploader like this
<example-component>
<form :...
0
votes
1
answer
484
views
how to prepare api using laravel and vue.js
good day;
I am new in vue.js and I want to build API in my project using vue.js and laravel
I have some question and answer because I got confused
I have services controller that return all service ...
1
vote
1
answer
111
views
can't add user photo with vuejs
i have built a profile components to my projects (laravel+vuejs)
when i try to show the user photo in her place it didn't show
i try many ways but no solution .when i check the DB i find it
but ...
0
votes
0
answers
218
views
how to redirect to another page with vue component template
I want to redirect template component. I go to another template component but I don't find the way
<template>
<div class="section-wrapper mg-t-20">
<label ...
3
votes
1
answer
12k
views
How to Toggle Visibility of VueJs Component?
In my Laravel App, I have a button on Blade template to show/hide a Vue Component. I tried with the following with the help of the following code here. I get following error:
[Vue warn]: Property or ...
1
vote
1
answer
2k
views
Vue components not loading
I was given this problematic codebase, where the Vue components aren't loading in.
Vue is mounting, but without any components.
This is a Laravel 5.7 app, using blade templates with some Vue added ...
0
votes
0
answers
537
views
Display Users in Admin Panel Using Laravel and VueJS
I am creating an Admin panel using Laravel which can manage all the users using VueJS.
UserController.php
public function show(User $user)
{
$user = User::all();
return ...
0
votes
0
answers
741
views
Error in render: "TypeError: Cannot use 'in' operator to search for '' in [object]
I am using vue.js and laravel 5.8.
In my commenting system like youtube,
I want to show user's profile image.
If user doesn't have a profile image, I want to show avatar.
I have many users, so ...
0
votes
0
answers
1k
views
Laravel 5.6 - Stripe error: You did not set a valid publishable key
I'm e-learning to develop an e-learning platform, I don't have experience with Vue or Stripe so that's why I can't solve it. When I tried to do a test transaction, the app shown the message "You didn'...
2
votes
2
answers
7k
views
Vuetify Treeview - Error Loading Children Asynchronously
I am using a client created with Vue Cli which fetches the data in the API made with Laravel 5.
I tried to load child items on a Treeview Vuetify, but it is not working as expected.
Vuetify Treeview ...