import { defineComponent } from 'vue';
import { createNamespace, addUnit, unknownProp } from '../utils';
import { useCustomFieldValue } from '@vant/use';
import { Loading } from '../loading';
const [name, bem] = createNamespace('switch');
export default defineComponent({
name,
props: {
size: [Number, String],
loading: Boolean,
disabled: Boolean,
modelValue: unknownProp,
activeColor: String,
inactiveColor: String,
activeValue: {
type: unknownProp,
default: true as unknown,
},
inactiveValue: {
type: unknownProp,
default: false as unknown,
},
},
emits: ['change', 'update:modelValue'],
setup(props, { emit }) {
const isChecked = () => props.modelValue === props.activeValue;
const onClick = () => {
if (!props.disabled && !props.loading) {
const newValue = isChecked() ? props.inactiveValue : props.activeValue;
emit('update:modelValue', newValue);
emit('change', newValue);
}
};
const renderLoading = () => {
if (props.loading) {
const color = isChecked() ? props.activeColor : props.inactiveColor;
return