Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
vue-long-scroll
Advanced tools
基于vue长列表优化无限滚动(只3d渲染视窗内元素)。Based on Vue long list optimization (only 3D rendering window elements).
npm i --save vue-long-scroll
import Vue from "vue";
import LongScroll from "vue-long-scroll"
import "vue-long-scroll/lib/vue-long-scroll.css"
<template>
<long-scroll v-model="current" :data="data" :style="{height:'400px'}"></long-scroll>
// 组件根元素为滚动容器默认高度400px,可自行设置。如果容器高度过大页面出现空白增大size属性即可
// The root element of the component is the scroll container. The default height is 400px, which can be set by yourself. If the height of the container is too large, the page appears blank, increase the size attribute
// 或者 or
<long-scroll v-model="current" :data="data" :style="{height:'400px'}">
<template #default="{row}">
{{row.name}}
</template>
</long-scroll>
</template>
<script>
data(){
return {
current:0, // 当前展示的数据第一条索引 The first index of the data currently displayed
data:[] // 数据结构[{name:""}]
}
}
</script>
属性/事件 option | 描述 description | 默认值 default |
---|---|---|
v-model/current+@change | 当前展示的数据第一条索引 The first index of the data currently displayed | 0 |
data | 要展示的所有数据 All data to show | \ |
current | 当前展示的数据第一条索引 The first index of the data currently displayed | 0 |
size | 要渲染到Dom的数据条数 Number of data to render to DOM | 20 |
valueKey | 行展示默认内容的键 Line shows the default content of the key | name |
rowHeight | 每行展示的高度 Height of each line | 36 |
change | 当前数据改变事件 Current data change events | current |
Copyright (c) 2021-present, YangJianFei 1294485765@qq.com
https://github.com/YangJianFei/vue-long-scroll
FAQs
基于vue长列表优化无限滚动(只3d渲染视窗内元素)。Based on Vue long list optimization (only 3D rendering window elements).
The npm package vue-long-scroll receives a total of 2 weekly downloads. As such, vue-long-scroll popularity was classified as not popular.
We found that vue-long-scroll 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.