
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
yi-infinite-loading-vue3
Advanced tools
An infinite loading component for Vue 3.0 apps
npm install yi-infinite-loading-vue3
global use
import { createApp } from 'vue'
import App from './App.vue'
import YiInfiniteLoading from 'yi-infinite-loading-vue3'
const app = createApp(App)
// app.component("YiInfiniteLoading", YiInfiniteLoading)
// or
app.use(YiInfiniteLoading)
app.mount('#app')
introduced separately
import YiInfiniteLoading from "yi-infinite-loading-vue3"
<script>
export default {
components: {
YiInfiniteLoading
}
}
</script>
<template>
<div>
<yi-infinite-loading
:loading="isLoading"
:finished="finished"
:offset="100"
@loadMore="loadMore">
</yi-infinite-loading>
</div>
</template>
src/components.d.ts
import YiInfiniteLoading from "yi-infinite-loading-vue3"
/**
* @desc ts Declare global registration components
*/
declare module "@vue/runtime-core" {
export interface GlobalComponents {
YiInfiniteLoading: typeof YiInfiniteLoading
}
}
| props | description | type | default |
|---|---|---|---|
| loadMore | callback | function | function |
| loading | is loading | booblean | false |
| finished | is loaded | boolean | false |
| offset | distance from bottom | string | number | 0 |
| hideLoading | Whether to hide the default loading status | boolean | false |
Let's see the yi-infinite-loading-vue3 package in action.
<template>
<div class="infinite-scroll-box">
<ul class="infinite-scroll-list">
<li class="infinite-scroll-item" v-for="item in list" :key="item">
{{ item }}
</li>
</ul>
<YiInfiniteLoading
:loading="isLoading"
:finished="finished"
offset="100%"
:hideLoading="true"
@loadMore="loadMore"
>
<span class="tips" v-if="isLoading">loading...</span>
<span class="tips" v-if="finished">end...</span>
</YiInfiniteLoading>
</div>
<div class="clear" >
<button @click="clear" >clear</button>
<button v-if="!isLoading" @click="loadMore" >load more</button>
</div>
</template>
<script setup lang="ts">
import { reactive, ref } from 'vue'
const list = reactive<number[]>([])
const isLoading = ref(false)
const finished = ref(false)
const loadMore = () => {
if (isLoading.value) {
return
}
isLoading.value = true
setTimeout(() => {
const len = list.length
for (let i = 1; i <= 10; i++) {
list.push(len + i)
}
isLoading.value = false
if (list.length > 100) {
finished.value = true
}
}, 1000)
}
const clear = () => {
list.splice(0, list.length)
finished.value = false
}
</script>
<style scoped>
.infinite-scroll-box{
width: 100%;
height: 50vh;
overflow-y: auto;
border: 1px solid #000;
}
.infinite-scroll-list{
width: 100%;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.infinite-scroll-item{
margin-bottom: 10px;
background-color: red;
color: #fff;
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
}
button{
margin-bottom: 30px;
}
.tips{
display: block;
text-align: center;
}
</style>
</style>
FAQs
A Infinite Loading Component for Vue 3
We found that yi-infinite-loading-vue3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.