vue-infinite-loading icon indicating copy to clipboard operation
vue-infinite-loading copied to clipboard

disable spinner

Open qxygene opened this issue 4 years ago • 4 comments

is it possible to disable or hide spinner?

qxygene avatar Jan 26 '21 19:01 qxygene

@qxygene did you find a solution to this?

rrd108 avatar May 14 '21 14:05 rrd108

Just use the spinner slot and make it an empty div

<infinite-loading>
  <div slot="spinner"></div>
</infinite-loading>

wobsoriano avatar Jun 11 '21 09:06 wobsoriano

@wobsoriano, in vue3 there is a bug with spinner. If you use custom tag with slot="spinner" or <template #spinner>... it doesn't hide the spinner after loading.

It does for default spinner, but not from custom ;(

kyrylo93 avatar Aug 06 '21 09:08 kyrylo93

@wobsoriano, in vue3 there is a bug with spinner. If you use custom tag with slot="spinner" or <template #spinner>... it doesn't hide the spinner after loading.

It does for default spinner, but not from custom ;(

is there even support for Vue 3 already? I implemented my own infinite handler on Vue 3 that mimics this component's behavior https://gist.github.com/wobsoriano/41a01290a9967c7f39077fe5c4a70436

wobsoriano avatar Aug 06 '21 10:08 wobsoriano