We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d22613 commit cea14d2Copy full SHA for cea14d2
src/components/InfiniteLoading.vue
@@ -1,6 +1,8 @@
1
<template>
2
<div class="infinite-loading-container">
3
- <i :class="spinnerType" v-show="isLoading"></i>
+ <slot name="spinner">
4
+ <i :class="spinnerType" v-show="isLoading"></i>
5
+ </slot>
6
<div class="infinite-status-prompt" v-show="!isLoading && isComplete && isFirstLoad">
7
<slot name="no-results">No results :(</slot>
8
</div>
0 commit comments