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 🙏

© 2025 – Pkg Stats / Ryan Hefner

chooks

v1.13.4

Published

基于 [`@vue/composition-api`](https://github.com/vuejs/composition-api) 的vue hooks函数

Downloads

198

Readme

chooks NPM version

基于 @vue/composition-api 的vue hooks函数

Vue 3.0还没有发布,但可以使用@vue/composition-api体验Vue 3.0的函数式编程以及较好的typescript支持

@vue/composition-api以插件形式发布,并且完全向下兼容Vue 2.0

chooks以纯函数方式调用,支持typescript类型检测,并且完全向下兼容Vue 2.0

Hooks

Chooks文档 ( 浏览时建议切换为storybook横版 )

Function decorator

  • useDebounceFun — 为【函数】添加防抖功能的装饰器函数
  • useThrottleFun — 为【函数】添加节流功能的装饰器函数
  • useLoadingFun — 为【函数】添加等待功能的装饰器函数
  • useTimeoutFun — 为【函数】添加延迟执行的装饰器函数

UI & Interactive

  • useSelect — 为【选项】提供单选,多选,选择变化等逻辑
  • useForm — 为【表单】提供初始化数据,重置,数据验证,提交,自动提交等逻辑
  • useList — 为【列表】添加滚动及虚拟列表功能
  • useCount — 为【计数器】提供技术,倒计时等功能
  • usePagination — 为【分页】提供页码,页数,每页大小,页码变化等逻辑
  • useCubicBezier — 为为【贝塞尔过渡】提供计算,开始,结束等函数

Communication

  • useEmitter — 提供一个的订阅-发布模式机制

Storage

  • useStorage — 为【storage】提供过期时间,get,set等函数

Plus

  • useRouter — 为【vue-router】提供刷新,后退,跳转,获取参数等逻辑
  • useStore — 为【vuex】提供state, commit, dispatch等逻辑
  • useStatic — 为应用提供一些全局静态hooks

Install

npm install @vue/composition-api chooks

yarn add @vue/composition-api chooks

Usage

import Vue from 'vue';
import VueCompositionAPI from '@vue/composition-api';

Vue.use(VueCompositionAPI); // 使用前需引用@vue/composition-api插件
<template>
    <div>
        <YourPaginationComponent 
        :page.sync="page" 
        :pageSize="pageSize" 
        :pageCount="pageCount" 
        @change="pageChange" />
    </div>
</template>
<script lang="ts">
import { Ref, SetupContext } from '@vue/composition-api'
import { usePagination } from 'chooks'

export default {
  setup(prop:any, context:SetupContext) {
    /*
    usePagination函数包含了关于分页的数据和逻辑
    { 
        page: Ref<number>,
        pageSize: Ref<number>,
        pageCount: Ref<number>,
        pageChange(curPage:number): void
    } 
    */
    const { page, pageSize, pageCount, pageChange } = usePagination()

    //兼容Vue 2.0
    let oldData = context.root.oldData
    let oldMethod = context.root.oldMethod

    //生命周期函数会在Vue 2.0生命周期函数后执行
    onMounted(()=>{
        console.log("after mounted")
    })

    return { page, pageSize, pageCount, pageChange }
  },
  data(){
      return {
          oldData: "this is an old data defined by vue 2.0"
      }
  },
  mounted(){
      console.log("todo mounted")
  },
  methods: {
      oldMethod(){}
  }
}
<script>

License

MIT