Gathering detailed insights and metrics for @feinzer/v-dropdown
Gathering detailed insights and metrics for @feinzer/v-dropdown
Gathering detailed insights and metrics for @feinzer/v-dropdown
Gathering detailed insights and metrics for @feinzer/v-dropdown
npm install @feinzer/v-dropdown
Typescript
Module System
Node Version
NPM Version
Vue (81.96%)
JavaScript (11.8%)
HTML (6.24%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
17 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jul 22, 2021
Latest Version
0.0.5
Package Id
@feinzer/v-dropdown@0.0.5
Unpacked Size
214.90 kB
Size
57.06 kB
File Count
10
NPM Version
6.14.13
Node Version
14.17.3
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
Simple and reusable select/dropdown component using VueJS Slots.
1npm install @feinzer/v-dropdown
or
1yarn add @feinzer/v-dropdown
1import { Dropdown } from '@feinzer/v-dropdown'; 2 3export default { 4 ... 5 components: { 6 Dropdown, 7 }, 8 ... 9 data() { 10 return { 11 selected: Object, 12 options: [ 13 ... 14 ] 15 }; 16 }, 17 ... 18};
1<Dropdown 2 v-slot="{ select }" 3 v-model="selected" 4> 5 <div 6 v-for="option in options" 7 :key="option.key" 8 @click="select(option)" 9 > 10 Option content 11 </div> 12</Dropdown>
Property | Type | Default | Description |
---|---|---|---|
placeholder | String | empty | Text to show when no option is selected |
label | String | empty | Key name of the selected object to show when an option is selected |
canSearch | Boolean | false | Enables or disables the ability to search through the options. |
@search | Event | Triggered whenever you input something in the search text input. Used to filter results. |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/17 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
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
81 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