<script setup>
import { ref } from 'vue'
const checked = ref(false)
</script>
<template>
<FuiSwitch v-model="checked" />
</template><FuiSwitch :model-value="true" /><FuiSwitch disabled />
<FuiSwitch :model-value="true" disabled />| Prop | Type | Default | Description |
|---|---|---|---|
| modelValue | boolean | false | Toggle state |
| disabled | boolean | false | Disabled state |