
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vue3-virtualized
Advanced tools
Vue3 components for efficiently rendering large, scrollable lists and tabular data
It was inspired by react-window.

cd examples
yarn install
yarn dev
<template>
<VariableSizeList
:height="150"
:item-size="getItemSize"
:item-count="1000"
>
<template #default="{ data, index, key, isScrolling }">
<Row
:index="index"
:rowData="data"
:isScrolling="isScrolling"
@click="handleClickRow(data, index)"
/>
</template>
</VariableSizeList>
</template>
<script>
import { VariableSizeList } from 'vue3-virtualized'
const Row = {
name: 'Row',
props: {
index: {
type: Number
},
rowData: {
},
},
setup(props) {
return () => {
return (
<div style="border: 1px solid">Row {props.index}</div>
)
}
}
};
const rowHeights = new Array(1000).fill(true).map(() => 25 + Math.round(Math.random() * 50));
const getItemSize = index => rowHeights[index];
export default {
name: 'VariableSizeListDemo',
components: {
VariableSizeList,
Row,
},
data() {
return {
rowHeights,
getItemSize,
}
},
methods: {
handleClickRow(rowData, index) {
console.log(`click row ${index}`)
}
}
}
</script>
FAQs
Vue3 components for efficiently rendering large, scrollable lists and tabular data
The npm package vue3-virtualized receives a total of 1 weekly downloads. As such, vue3-virtualized popularity was classified as not popular.
We found that vue3-virtualized 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.