白/夜
开关选择器
需要表示开关状态/两种状态之间的切换时
<template> <j-switch v-model:value="bool" /> </template> <script setup> import {JSwitch} from "justd" import { ref } from "vue"; const bool = ref(false); </script>
<template> <j-switch disabled /> </template>