blink-the-ui
v0.0.1-alpha.22
Published
A simple vue3 component library
Maintainers
Readme
Blink The UI
一个简洁的 Vue 3 组件库,基于 TypeScript 和 Vite 构建。
特性
- 🧩 丰富的组件集合
- ⚡ 基于 Vite 构建,速度快
- 📘 使用 TypeScript 编写,提供完整的类型定义
- 🎨 可定制主题
- 📱 响应式设计
包含的模块
- @blink-the-ui/components - 核心 UI 组件
- @blink-the-ui/layout - 布局组件
- @blink-the-ui/animations - 动画组件
- @blink-the-ui/icons - 图标组件
- @blink-the-ui/overlays - 浮层组件
- @blink-the-ui/directives - Vue 指令集
- @blink-the-ui/i18n - 国际化支持
安装
npm install @blink-the-ui/components或者使用 pnpm/yarn:
pnpm add @blink-the-ui/components使用
<template>
<Button @click="handleClick">Hello World</Button>
</template>
<script setup>
import { Button } from '@blink-the-ui/components';
const handleClick = () => {
console.log('Button clicked!');
};
</script>开发
# 安装依赖
pnpm install
# 启动开发服务器
pnpm dev
# 构建所有包
pnpm dist:all