feat: 初始化 shadcn-vue 模板项目

- 配置 Vue 3 + TypeScript + Vite + shadcn-vue 开发环境
- 添加 Tailwind CSS 和 Reka UI 支持
- 配置 ESLint + Prettier 代码规范
- 添加 VS Code 扩展推荐和项目设置
- 创建完整的 README 文档和使用指南
- 配置 pnpm 包管理和依赖锁定
This commit is contained in:
2025-10-01 09:27:40 +08:00
commit 741b1b00e4
21 changed files with 2124 additions and 0 deletions

13
index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>shadcn-vue-01</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>