The pagination is not showing using Vue.js v.3, what could be the problem? #132
-
Hi guys, I just installed this package to my laravel project however the pagination is not showing. Here is my repositorio: If you can see in my app,js I'm importing and registering this component:
In my composition file :
I'm using and api resource, but all my first 5 items from the pagination are showing but the pagination: I'm implementing the pagination inside the
I don´t know where is the problem, I teste laravel ui with bootstrap and now laravel ui with vue.js but it continues not showing. Any idea to fix the problem I will appreciate, thanks so much. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Hey @alcarazolabs. In your composition file, you're doing |
Beta Was this translation helpful? Give feedback.
-
And output is from The component has been registered |
Beta Was this translation helpful? Give feedback.
-
Fixed this datails were ignore due my first experience with this package. |
Beta Was this translation helpful? Give feedback.
Fixed
I forgot change
companies = []
tocompanies = {}
and also I needed to update my v-for in the table fromv-for="item in companies"
tov-for="item in companies.data"
this datails were ignore due my first experience with this package.
thanks so much.