feat:组件框架

This commit is contained in:
董海洋
2026-05-31 09:36:07 +08:00
parent 859acc7b71
commit b371a5341a
88 changed files with 23328 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
title: 快速开始
nav: 指南
---
# 快速开始
## 安装
```bash
pnpm add @nova/ui
```
## 使用
```tsx
import { Button } from '@nova/ui/components/Button'
export default () => <Button variant="solid">Hello Nova</Button>
```