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 7027893 commit 9ddabfbCopy full SHA for 9ddabfb
src/components/InfiniteLoading.vue
@@ -1,8 +1,10 @@
1
<template>
2
- <div class="infinite-loading-container" v-show="isLoading">
3
- <slot name="spinner">
4
- <i :class="spinnerType"></i>
5
- </slot>
+ <div class="infinite-loading-container">
+ <div v-show="isLoading">
+ <slot name="spinner">
+ <i :class="spinnerType"></i>
6
+ </slot>
7
+ </div>
8
<div class="infinite-status-prompt" v-show="!isLoading && isComplete && isFirstLoad">
9
<slot name="no-results">No results :(</slot>
10
</div>
0 commit comments