文档
Laravel

Laravel

使用 Inertia 安装和配置 Laravel

创建项目

首先使用 Laravel 安装程序创建一个新的 Laravel 项目,其中包含 Inertia 和 React:laravel new my-app

laravel new my-app --typescript --breeze --stack=react --git --no-interaction

运行 CLI

运行 shadcn init 命令来设置您的项目

npx shadcn@latest init

配置 components.json

系统会问您一些问题,以配置 components.json

Which style would you like to use?
Which color would you like to use as base color?
Do you want to use CSS variables for colors? › yes

就是这样

现在您可以开始将组件添加到您的项目中。

npx shadcn@latest add button

上面的命令将 Button 组件添加到您的项目中。然后您可以像这样导入它

import { Button } from "@/Components/ui/button"
 
export default function Home() {
  return (
    <div>
      <Button>Click me</Button>
    </div>
  )
}