import{VueScrollPicker}from'vue-scroll-picker'import"vue-scroll-picker/style.css";constoptions=[{ name:'Option 1', value:1},{ name:'Option 2', value:2},{ name:'Option 3', value:3},]constmodelValue=ref(1) <template> <VueScrollPicker:options="options"v-model="modelValue"/> </templ...
iOS Style Scroll Picker Component for Vue 2 & 3. Support All Gestures of Mouse(also MouseWheel) and Touch. - chore(deps): update dependency eslint-plugin-vue to v9.33.0 (#939) · wan2land/vue-scroll-picker@dde0426
1. Import the ScrollPicker component. import ScrollPicker from 'vue3-scroll-picker'; 2. Register the component. const app = createApp(App); app.use(ScrollPicker); // or export default { components: { ScrollPicker, }, }; 3. Add the ScrollPicker component to the app template. <template...
const elm = unrefElement(gridWrapRef); if (elm) { if (!textInput.value) { elm.focus(); elm.focus({ preventScroll: true }); } scrollable.value = elm.clientHeight < elm.scrollHeight; } 0 comments on commit b789ad2 Please sign in to comment. Footer...