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 🙏

© 2026 – Pkg Stats / Ryan Hefner

meixistepbar

v2.0.11

Published

## Project setup ``` npm install ```

Downloads

10

Readme

meixiStepBar

用于业务当中展示步骤进度条。

项目结构

    |-- lib  ---------------------------插件打包后文件夹
    |   |-- demo.html
    |   |-- meixistepbar.common.js
    |   |-- meixistepbar.umd.js
    |   |-- meixistepbar.umd.min.js
    |-- packages ---------------------------插件主要文件夹
    |   |-- index.ts ---------------------------入口文件
    |   |-- component ---------------------------组件文件夹
    |       |-- meixiStepBar.vue ---------------------------主要组件
    |       |-- stepBarItem.vue
    |-- public
    |   |-- favicon.ico
    |   |-- index.html
    |-- src

组件预览

安装依赖

npm install meixiStepBar

项目文件

/// index.ts
// 入口只导出 meixiHandleRecord 组件
export {meixiStepBar}

插件使用

  <meixi-step-bar v-model='activityStep'
                  :error='errorIndex'
                  :error-text='orderInfo.verifyRemark '
                  :step-list='listStep'>
</meixi-step-bar>

meixiStepBar Api

props

| 参数 | 类型 | 默认值 | 可选值 | 描述 | |-----------|---------|-----------|------------|----------------------------------| | v-model | / | / | / | 当前被选中的数组下标 | | size | String | mini | mini | 进度步骤条的大小 | | stepList | Array | / | / | 总共需要渲染的步骤列表,类型为{title:'第一步'} | | space | String | / | / | 单条步骤的宽度 | | event | Boolean | false | true/false | 单条步骤是否开启点击事件,并且修改v-model为点击的数组下标 | | error | Number | 0 | | 如果需要显示某一条步骤是否渲染成错误的样式可以修改成数组下标 | | errorText | String | 这是一段错误的描述 | | 当鼠标hover错误的步骤时,悬浮出来的提示文字 |

emit 事件

暂无

slot 插槽

暂无