switch
Basic switch.
Basic switch.
Загрузка превью…
src/switch/c-switch-1.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Switch } from "@/components/ui/switch"
</script>
<template>
<div class="flex items-center justify-center">
<Field orientation="horizontal">
<Switch id="switch-basic" />
<FieldLabel for="switch-basic">Airplane Mode</FieldLabel>
</Field>
</div>
</template>