Skip to content
本页目录

Switch  开关

开关选择器

何时使用

需要表示开关状态/两种状态之间的切换时

基本用法

预览

代码

vue
<template>
  <j-switch v-model:value="bool" />
</template>
<script setup>
import {JSwitch} from "justd"
import { ref } from "vue";
const bool = ref(false);
</script>

锁定状态

预览

代码

vue
<template>
  <j-switch disabled />
</template>