All Questions
6 questions
0
votes
0
answers
76
views
Vue component included in laravel blade is not rendering while using router-link?
I have such code in my app.blade.php file.
<router-view name="popupAction"></router-view>
@yield('content')
and other blade files are extending the app.blade.php file.
while I am in ...
3
votes
1
answer
2k
views
Error TypeError: Cannot read property 'dispatch' of undefined at app.js:12012
Hi I've been trying to learn vuejs and vuex while trying to get response from an api call with vuex concept I got the following error.Please help.
This error occurred
Error TypeError: Cannot read ...
4
votes
2
answers
7k
views
Laravel logout route in Vue component
In my Laravel 5.5 project I have a Vue component as a separate file with .vue extension.
In its template there is a vue-router link. Also, I need to place the standard Laravel logout link here.
<...
8
votes
1
answer
2k
views
Practical use of VueJS with Laravel
I'm starting a new large-scale application and after hearing a lot about VueJS + Laravel combination i thought of using it. I followed Laracasts' Learn Vue 2: Step By Step series and some tutorials to ...
0
votes
0
answers
1k
views
vuejs2 event listening not working
I am following this tutorial https://github.com/ratiw/vuetable-2-tutorial and trying to develop my laravel admin panel using vuejs.
Filter in the list vue is not working
This is my list.vue
<...
0
votes
1
answer
400
views
Sharing root data with router-view component vue js
Best to give more context to this first.
I am creating an Single Page Application with vuejs, vue-router. When the user logs in the user object is returned from the backend. I am using Laravel 5.4 for ...