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

cil-tab

v1.0.31

Published

fixed tab plugins

Downloads

4

Readme

cil-tab

A Vue.js plugins

tab组件,解决多项目跳转公用一个底部tab

接受参数

z-index

zIndex 层级默认99999, 可自己设置

background

background 默认白色背景

location

location 跳转方式;接收字符串格式,默认有历史记录(push);可以接收 push(有历史记录)以及replace(无历史记录)两种方式

defaultSelected

defaultSelected tab选择了第几个,默认选择1,接收number,1,2,3,4,5

baseUrl

baseUrl 数组格式,为底部tab

// baseUrl默认为:
[
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
      name: 'Home'
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
      name: 'Coupon'
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
      name: 'Point Mall'
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
      name: 'Delivery'
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
      name: 'Membership'
    }
  ];
// 支持传入以下数组:
['https://www.baidu.com','https://www.baidu.com','https://www.baidu.com','https://www.baidu.com','https://www.baidu.com']
[
    {
      url: 'https://www.baidu.com',
      name: 'Home'
    },
    {
      url: 'https://www.baidu.com',
      name: 'Coupon'
    },
    {
      url: 'https://www.baidu.com',
      name: 'Point Mall'
    },
    {
      url: 'https://www.baidu.com',
      name: 'Delivery'
    },
    {
      url: 'https://www.baidu.com',
      name: 'Membership'
    }
 ]
[
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
    },
    {
      icon: 'CDN链接',
      url: 'https://www.baidu.com',
    }
];

注意baseUrl至少要传递跳转链接!!!!