<template>
<TsSwitch v-model="customColor1" activeColor="#52c41a" inactiveColor="#d9d9d9" />
<TsSwitch v-model="customColor2" activeColor="#fa541c" inactiveColor="#999999" />
</template>
<script setup lang="ts">
const customColor1 = ref(true);
const customColor2 = ref(false);
</script>