이 사이트는 shadcn-svelte 공식 문서의 한국어 번역입니다.
6.9k

Alert Dialog

Previous Next

중요한 내용으로 사용자를 중단시키고 응답을 기대하는 모달 대화상자입니다.

Docs API Reference
<script lang="ts">
  import * as AlertDialog from "$lib/components/ui/alert-dialog/index.js";
  import { buttonVariants } from "$lib/components/ui/button/index.js";
</script>
 
<AlertDialog.Root>
  <AlertDialog.Trigger class={buttonVariants({ variant: "outline" })}>
    다이얼로그 표시
  </AlertDialog.Trigger>
  <AlertDialog.Content>
    <AlertDialog.Header>
      <AlertDialog.Title>정말 확실하신가요?</AlertDialog.Title>
      <AlertDialog.Description>
        이 작업은 취소할 수 없습니다. 계정이 영구적으로 삭제되고 서버에서
        데이터가 제거됩니다.
      </AlertDialog.Description>
    </AlertDialog.Header>
    <AlertDialog.Footer>
      <AlertDialog.Cancel>취소</AlertDialog.Cancel>
      <AlertDialog.Action>계속</AlertDialog.Action>
    </AlertDialog.Footer>
  </AlertDialog.Content>
</AlertDialog.Root>

설치

pnpm dlx shadcn-svelte@latest add alert-dialog

사용법

<script lang="ts">
  import * as AlertDialog from "$lib/components/ui/alert-dialog/index.js";
</script>
<AlertDialog.Root>
  <AlertDialog.Trigger>열기</AlertDialog.Trigger>
  <AlertDialog.Content>
    <AlertDialog.Header>
      <AlertDialog.Title>정말 확실하신가요?</AlertDialog.Title>
      <AlertDialog.Description>
        이 작업은 되돌릴 수 없습니다. 계정이 영구적으로 삭제되고 서버에서
        데이터가 제거됩니다.
      </AlertDialog.Description>
    </AlertDialog.Header>
    <AlertDialog.Footer>
      <AlertDialog.Cancel>취소</AlertDialog.Cancel>
      <AlertDialog.Action>계속</AlertDialog.Action>
    </AlertDialog.Footer>
  </AlertDialog.Content>
</AlertDialog.Root>