npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lotus-picker

v1.0.8

Published

vue版本picker选择器支持pc与手机端

Downloads

13

Readme

lotus-picker

vue picker选择器组件

how to use

npm install lotus-picker --save or yarn add lotus-picker

插件的方式引入使用

1.main.js

    import lotusPicker from 'lotus-picker'
    import 'lotus-picker/dist/lotus-picker.min'
    Vue.use(lotusPicker)

2.页面使用

     <lotus-picker :lotusPickerData="items" @change="change" :title="title" :flag="flag"></lotus-picker>

3.参数说明 (1)参数定义:

    data () {
         return {
            items: [
                    {
                        values: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
                        index: 0,
                        type: 'year',
                        maxVal:4
                    }, {
                        values: [12, 22, 33, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
                        index: 2,
                        type: 'month',
                        maxVal:9
                    }, {
                        values: [14, 10, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
                        index: 3,
                        type: 'day'
                    }
                ],
                flag:{
                    isShow:false
                },
                title:'标题',
                selectValue:[1,33,9]
         }
    }

(2)items的长度为显示多少栏,values是每一栏的数值类型为array,index为每一栏显示的初始值类型为number,可传可不传,type为每一栏显示的类型命名这个参数是必须的,类型为string,maxVal为最大的滑动值,类型为number,此参数可选 (3)change为回调函数接收一个参数result,result这个参数里包含了在picker组件里选择的值还有索引值{index:0,val:1,type:'year',maxVal:6},cancel为取消按钮回调函数,返回picker组件flag标识false (4)title为picker组件里显示的标题,可传类型为string,不传则默认是请选择</br/> (5)flag为设置picker组件显示or隐藏 (6)selectValue为picker组件中已选的值参数为array 4.演示 lotusPicker