
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
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
The npm package yi-infinite-loading-vue3 receives a total of 31 weekly downloads. As such, yi-infinite-loading-vue3 popularity was classified as not popular.
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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.