Docs
警告对话框
警告对话框
一个模态对话框,会打断用户并展示重要内容,期待用户的回应。
安装
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>