
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
vue-scroll-picker
Advanced tools
iOS Style Scroll Picker Component for Vue 3. Support All Gestures of Mouse(also MouseWheel) and Touch.
iOS Style Scroll Picker Component for Vue 3. Support All Gestures of Mouse(also MouseWheel) and Touch.
If you are using vue 2, please refer to the v0.x branch.
npm i vue-scroll-picker
Global Registration
Vue3 Global Registration Guide
import { createApp } from 'vue'
import VueScrollPicker from 'vue-scroll-picker'
import 'vue-scroll-picker/lib/style.css'
const app = createApp(/* */)
app.use(VueScrollPicker) // export default is plugin
Local Registration
<template>
<VueScrollPicker :options="options" />
</template>
<script>
import { VueScrollPicker } from 'vue-scroll-picker'
export default {
components: {
VueScrollPicker, // export VueScrollPicker is component
},
}
</script>
<style src="vue-scroll-picker/lib/style.css"></style>
Name | Type | Default | Example |
---|---|---|---|
modelValue | any | null | |
placeholder | string | null | |
empty | string | 'No Items' | |
options | string[] { name: string, value: any }[] | [] | ["10KG", "20KG", "30KG"] [{value: 10, name: "10KG"}, {value: 20, name: "20KG"}] |
dragSensitivity | number | 1.7 | |
touchSensitivity | number | 1.7 | |
scrollSensitivity | number | 1 |
Name | Type |
---|---|
update:modelValue | any |
Name | Prop | Default |
---|---|---|
default | { option: { name: string, value: any } } | {{ option.name }} |
placeholder | { text: string } | {{ placeholder }} |
empty | { text: string } | No Items |
FAQs
iOS Style Scroll Picker Component for Vue 3. Support All Gestures of Mouse(also MouseWheel) and Touch.
The npm package vue-scroll-picker receives a total of 3,408 weekly downloads. As such, vue-scroll-picker popularity was classified as popular.
We found that vue-scroll-picker demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.