文档
Next.js
Next.js
安装和配置 Next.js。
创建项目
运行 init
命令来创建一个新的 Next.js 项目或设置一个已存在的项目
npx shadcn@latest init
你可以使用 -d
标志用于默认值,例如 new-york
、zinc
和 yes
用于 CSS 变量。
npx shadcn@latest init -d
配置 components.json
系统会问你一些问题来配置 components.json
Which style would you like to use? › New York
Which color would you like to use as base color? › Zinc
Do you want to use CSS variables for colors? › no / yes
就这样
现在你可以开始向你的项目添加组件了。
npx shadcn@latest add button
上面的命令将把 Button
组件添加到你的项目中。然后你可以像这样导入它
import { Button } from "@/components/ui/button"
export default function Home() {
return (
<div>
<Button>Click me</Button>
</div>
)
}