0👍
✅
Just try this out.
First import laravel-vue-pagination like below.
import pagination from 'laravel-vue-pagination';
then
Vue.component('pagination', pagination));
This worked for me.
0👍
Just write a blank one for ease of use: create laravel-vue-pagination.d.ts
Then just declare the module:
declare module 'laravel-vue-pagination' {}
That’s all you need to solve the error.
Source:stackexchange.com