Appearance
A fancy looking checkbox.
<script setup> import { ref } from "vue"; const value = ref(true); </script> <Toggle v-model="value" />