文档
抽屉

抽屉

一个可以拖动的对话框,可以附加到视口的任何一侧。

安装

使用

import {
  Drawer,
  DrawerClose,
  DrawerContent,
  DrawerDescription,
  DrawerFooter,
  DrawerHeader,
  DrawerLabel,
  DrawerTrigger
} from "@/components/ui/drawer";
<Drawer>
  <DrawerTrigger>Open</DrawerTrigger>
  <DrawerContent>
    <DialogHeader>
      <DrawerLabel>Are you sure absolutely sure?</DrawerLabel>
      <DialogDescription>
        This action cannot be undone. This will permanently delete your account and remove your data
        from our servers.
      </DialogDescription>
    </DialogHeader>
  </DrawerContent>
</Drawer>