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

@breezeui/vue

v0.0.3

Published

轻量、可定制、基于TailwindCSS的Vue3组件库

Readme

BreezeUI

✨ 特性

  • ⚡️ 轻量级: 专为性能打造,体积小巧。
  • 🎨 TailwindCSS: 基于 TailwindCSS 构建,完全可定制。
  • 🔧 TypeScript: 全量 TypeScript 编写,提供优秀的类型推导。
  • 🧩 Vue 3: 拥抱 Vue 3 Composition API。
  • 🌲 按需引入: 支持 Tree Shaking,只打包你用到的代码。

📦 安装

推荐使用 pnpm 进行安装。

pnpm add @breezeui/vue

或者使用 yarn / npm。

yarn add @breezeui/vue
# or
npm install @breezeui/vue

🚀 快速上手

全局引入

在你的 main.tsmain.js 入口文件中:

import { createApp } from 'vue';
import App from './App.vue';
import BreezeUI from '@breezeui/vue';
import '@breezeui/vue/dist/index.css'; // 引入样式

const app = createApp(App);
app.use(BreezeUI);
app.mount('#app');

按需引入 (推荐)

配合 unplugin-vue-components 实现自动按需引入。

首先安装插件。

pnpm add -D unplugin-vue-components

然后配置 vite.config.ts

// vite.config.ts
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import Components from 'unplugin-vue-components/vite';
import { BreezeUIResolver } from '@breezeui/vue';

export default defineConfig({
  plugins: [
    vue(),
    Components({
      resolvers: [BreezeUIResolver()],
    }),
  ],
});

注意:使用按需引入时,建议在入口文件(如 main.ts)中引入一次全局样式 import '@breezeui/vue/dist/style.css',或者配置 Resolver 的 importStyle 选项(需确保 CSS 文件路径正确)。

🔨 开发

# 安装依赖
pnpm install

# 启动开发环境
pnpm dev

# 构建
pnpm build

# 运行测试
pnpm test

# 发布 (需要发布权限)
pnpm release

📄 License

MIT License © 2024-PRESENT BL