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

vue-filter-bar

v1.0.7

Published

vue编写的移动端筛选条组件。

Downloads

7

Readme

vue-filter-bar

vue编写的移动端筛选条组件。

Introduction

利用vue开发的移动端筛选条组件,方便在移动端进行多条件下搜索,提高用户的体验度,高速提取用户所要浏览的搜索条件,以便提供更精确的用户浏览内容。在使用过程中,希望开发者给予更多的建议和批评,使之更加完善,提供更好的服务。

Example

Alt text

More Example

  • cd demo
  • npm i
  • npm run dev

Use Setup

Install vue-filter-bar

npm i vue-filter-bar --save

Vue mount

// import
import FilterBar from 'vue-filter-bar'

export default {
  components: {
    FilterBar
  }
}

Use in SPA

<template>
  <div id="app">
    <filter-bar 
      top="40" 
      :bar-menus="barMenus" 
      @showDialog="handleShowDialog" 
      @closeDialog="handleCloseDialog" 
      @changeTab="handleChangeTab"
      @changeMainItem="handleChangeMainItem" 
      @changeSelect="changeData">
    </filter-bar>
  </div>
</template>

<script>
  import FilterBar from '@/components/FilterBar'
  import barMenus from '@/data';
  export default {
      name: 'app',
      data() {
        return {
          barMenus: barMenus
        }
      },
      methods: {
        handleShowDialog(v) {
          // console.log(v);
        },
        handleCloseDialog(v) {
          // console.log(v);
        },
        handleChangeTab(v) {
          // console.log(v);
        },
        handleChangeMainItem(v) {
          // console.log(v)
        },
        changeData(v) {
          console.log(v);
        }
      },
      components: {
        'filter-bar': FilterBar
      }
    }
  </script>

Data Structure

data.js

Data Params

  • top(Number, default: 0): 筛选条离顶部的距离
  • name(String, default: ''): 按钮名称
  • icon(String, default: ''): 按钮icon (弃用)
  • value(String, default: ''): 按钮的值
  • type(String, default: ''): 区分筛选按钮,当type='filter'时,列表为筛选模式。
  • showTabHeader(Boolean, default: true): 显示弹框一级目录, 当type='filter'时,其值为false。
  • defaultIcon(String, default: ''): 按钮默认icon
  • selectIcon(String, default: ''): 按钮被选中icon
  • selectIndex(Number, default: 0): 序号,当type='filter'时,其值为false。
  • detailList(Array, default:[]): 二级目录列表左侧
  • list(Array, default: []): 二级目录列表右侧

API

  • bar-menus(Array, default: []): 按钮相关数据的入口。
  • showDialog(Function, return: Object): 显示按钮相对应的弹框时调用。
  • closeDialog(Function, return: Object): 弹框消失时调用。
  • changeTab(Function, return: Object): 切换弹框一级目录时调用。
  • changeMainItem(Function, return: Object): 选择二级目录左侧列表时调用。
  • changeSelect(Function, return: Array): 返回最终结果。(注:筛选结果的value返回json对象)

Dodos

Issues