98.0k

警告对话框 Alert Dialog

PreviousNext

一个模态对话框,用于向用户展示重要内容并期望用户响应。

安装

pnpm dlx shadcn@latest add alert-dialog

使用方法

import {
  AlertDialog,
  AlertDialogAction,
  AlertDialogCancel,
  AlertDialogContent,
  AlertDialogDescription,
  AlertDialogFooter,
  AlertDialogHeader,
  AlertDialogTitle,
  AlertDialogTrigger,
} from "@/components/ui/alert-dialog"
<AlertDialog>
  <AlertDialogTrigger>打开</AlertDialogTrigger>
  <AlertDialogContent>
    <AlertDialogHeader>
      <AlertDialogTitle>您确定吗?</AlertDialogTitle>
      <AlertDialogDescription>
        此操作不可撤销。此操作将永久删除您的账户并从我们的服务器中移除您的数据。
      </AlertDialogDescription>
    </AlertDialogHeader>
    <AlertDialogFooter>
      <AlertDialogCancel>取消</AlertDialogCancel>
      <AlertDialogAction>继续</AlertDialogAction>
    </AlertDialogFooter>
  </AlertDialogContent>
</AlertDialog>