赞
踩
创建文件夹next-shadcn
在文件夹中执行
npx create-next-app@latest . --typescript --tailwind --eslint
安装后,跑起来
在刚才目录下,运行命令
npx shadcn-ui@latest init
目录中会增加两个目录
components
和lib
替换原始page.tsx文件
export default function Home() {
return (
<>
<h1>Hello World</h1>
</>
);
}
npx shadcn-ui@latest add button
myButton: "p-2 bg-orange-400",
page.tsx
代码
import { Button } from "@/components/ui/button";
export default function Home() {
return (
<>
<h1>Hello World</h1>
<Button variant="outline">Button</Button>
<Button variant="myButton">Button</Button>
</>
);
}
界面效果
学习资源:https://www.freecodecamp.org/news/shadcn-with-next-js-14/#how-to-install-next-js
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。