Gathering detailed insights and metrics for @egjs/vue-infinitegrid
Gathering detailed insights and metrics for @egjs/vue-infinitegrid
Gathering detailed insights and metrics for @egjs/vue-infinitegrid
Gathering detailed insights and metrics for @egjs/vue-infinitegrid
A module used to arrange card elements including content infinitely on a grid layout.
npm install @egjs/vue-infinitegrid
Typescript
Module System
Node Version
NPM Version
4.12.0 Release (2024-07-02)
Updated on Jul 02, 2024
4.11.1 Release (2024-02-07)
Updated on Feb 07, 2024
4.10.1 Release (2023-08-04)
Updated on Aug 04, 2023
4.10.0 Release (2023-05-26)
Updated on May 26, 2023
4.9.0 Release (2023-03-17)
Updated on Mar 17, 2023
4.8.1 Release (2023-01-27)
Updated on Jan 27, 2023
TypeScript (43.19%)
MDX (40.78%)
HTML (6.43%)
JavaScript (3.86%)
Vue (2.46%)
CSS (1.46%)
Svelte (1.28%)
Sass (0.53%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2,296 Stars
829 Commits
96 Forks
27 Watchers
5 Branches
17 Contributors
Updated on Jul 14, 2025
Latest Version
4.12.0
Package Id
@egjs/vue-infinitegrid@4.12.0
Unpacked Size
69.00 kB
Size
12.08 kB
File Count
25
NPM Version
8.3.1
Node Version
16.14.0
Published on
Jul 02, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
35
A Vue component that can arrange items infinitely according to the type of grids
Demo / Documentation / Other components
⚠️ If you're looking for InfiniteGrid for Vue 3, check out @egjs/vue3-infinitegrid
1npm install --save @egjs/vue-infinitegrid
camelCased
event names became kebab-case
requestAppend
=> request-append
append()
, prepend()
, insert()
, remove()
1<template> 2 <masonry-infinite-grid 3 class="container" 4 v-bind:gap="5" 5 v-on:request-append="onRequestAppend" 6 > 7 <div 8 class="item" 9 v-for="item in items" 10 :key="item.key" 11 :data-grid-groupkey="item.groupKey" 12 > 13 ... 14 </div> 15 </masonry-infinite-grid> 16</template> 17<script lang="ts"> 18import { MasonryInfiniteGrid } from "@egjs/vue-infinitegrid"; 19 20export default { 21 components: { 22 MasonryInfiniteGrid, 23 }, 24 data() { 25 return { 26 items: this.getItems(0, 10), 27 }; 28 }, 29 methods: { 30 getItems(nextGroupKey: number, count: number) { 31 const nextItems: any[] = []; 32 33 for (let i = 0; i < count; ++i) { 34 const nextKey = nextGroupKey * count + i; 35 36 nextItems.push({ groupKey: nextGroupKey, key: nextKey }); 37 } 38 return nextItems; 39 }, 40 onRequestAppend(e) { 41 const nextGroupKey = (+e.groupKey! || 0) + 1; 42 43 this.items = [...this.items, ...this.getItems(nextGroupKey, 10)]; 44 }, 45 }, 46}; 47</script>
See CONTRIBUTING.md.
Please file an Issue with label "Vue".
egjs-infinitegrid is released under the MIT license.
Copyright (c) 2015-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 14/30 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
163 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More