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

Switch

Previous Next

사용자가 체크됨과 체크 안 됨 사이를 토글할 수 있는 컨트롤입니다.

Docs API Reference
<script lang="ts">
  import { Label } from "$lib/components/ui/label/index.js";
  import { Switch } from "$lib/components/ui/switch/index.js";
</script>
 
<div class="flex items-center space-x-2">
  <Switch id="airplane-mode" />
  <Label for="airplane-mode">비행기 모드</Label>
</div>

설치

pnpm dlx shadcn-svelte@latest add switch

사용법

<script lang="ts">
  import { Switch } from "$lib/components/ui/switch/index.js";
</script>
<Switch />