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

uniapp-dyckui

v4.1.12

Published

uniapp-dyckui - 基于 uni-app 的优质组件库

Downloads

1,159

Readme

uniapp + Vue3 + Ts + Vite5 + UnoCss + wot-ui + z-paging 构成,

基础组件

  • Button:按钮组件,支持多种样式和状态
  • Dialog:对话框组件,用于信息提示和用户交互
  • Divider:分割线组件,用于分隔内容
  • Popup:弹出层组件,支持多种弹出方式
  • Toast:轻提示组件,用于短暂信息展示
  • Swiper:轮播图组件,支持自动轮播和手势滑动

交互组件

  • InfiniteScroll:无限滚动组件,用于加载更多数据
  • PullRefresh:下拉刷新组件,用于刷新页面内容

表单组件

  • DropdownSelect:下拉选择器组件,支持单选和多选
  • DropdownWithBadge:带徽章的下拉组件,用于展示带有数量提示的选择项

筛选组件

  • FilterDrawer:筛选抽屉组件,用于复杂条件筛选

📖 组件引用与示例

全局引入

main.ts 中全局引入所有组件:

import { createApp } from 'vue'
import App from './App.vue'
import uniappDyckui from 'uniapp-dyckui'
import 'uniapp-dyckui/style' // 引用CSS文件

const app = createApp(App)

 app.component('SButton', uniappDyckui.Button)
 app.component('SToast', uniappDyckui.Toast)  
 ...

组件使用示例

在需要使用的页面或组件中局部引入:

<script setup lang="ts">

</script>

<template>
  <s-button>主要按钮</s-button>
</template>

组件使用示例


平台兼容性

| H5 | IOS | 安卓 | 微信小程序 | 字节小程序 | 快手小程序 | 支付宝小程序 | 钉钉小程序 | 百度小程序 | | --- | --- | ---- | ---------- | ---------- | ---------- | ------------ | ---------- | ---------- | | √ | √ | √ | √ | √ | √ | √ | √ | √ |

注意每种 UI框架 支持的平台有所不同,详情请看各 UI框架 的官网,也可以看 unibest 文档。

⚙️ 环境

  • node>=18
  • pnpm>=7.30
  • Vue Official>=2.1.10
  • TypeScript>=5.0