[Vuejs]-Laravel5.3 vue js methods not working

0πŸ‘

βœ…

It looks like you have several issues here, and that you have not provided enough information to debug the overall problem. I can at least let you know about a couple of issues I see:

  1. In the pasted example above you are missing a closing </template> tag after the closing </ul> tag.
  2. In your users component, you never call the getusers() method, you only define it. Based on your code, I assume you want to set items as the results of the getusers() method.

Leave a comment