- 配置 Vue 3 + TypeScript + Vite + shadcn-vue 开发环境 - 添加 Tailwind CSS 和 Reka UI 支持 - 配置 ESLint + Prettier 代码规范 - 添加 VS Code 扩展推荐和项目设置 - 创建完整的 README 文档和使用指南 - 配置 pnpm 包管理和依赖锁定
14 lines
360 B
HTML
14 lines
360 B
HTML
<!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>
|