shadcn-vue/apps/www/registry/new-york/example/SwitchDemo.vue
2024-11-21 11:52:31 +08:00

12 lines
315 B
Vue

<script setup lang="ts">
import { Label } from '@/lib/registry/new-york/ui/label'
import { Switch } from '@/lib/registry/new-york/ui/switch'
</script>
<template>
<div class="flex items-center space-x-2">
<Switch id="airplane-mode" />
<Label for="airplane-mode">Airplane Mode</Label>
</div>
</template>