mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-22 14:05:23 +00:00
37 lines
898 B
Vue
37 lines
898 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
modelValue: { type: Boolean, default: false },
|
|
},
|
|
emits: ['update:modelValue'],
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('update:modelValue', !this.modelValue);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
type="button"
|
|
class="relative flex-shrink-0 h-4 p-0 border-none shadow-inner w-7 rounded-3xl"
|
|
:class="
|
|
modelValue ? 'bg-n-brand shadow-n-brand' : 'shadow-n-slate-6 bg-n-slate-5'
|
|
"
|
|
role="switch"
|
|
:aria-checked="modelValue.toString()"
|
|
@click="onClick"
|
|
>
|
|
<span
|
|
aria-hidden="true"
|
|
class="rounded-full bg-n-background top-0.5 absolute w-3 h-3 translate-y-0 duration-200 transition-transform ease-in-out"
|
|
:class="
|
|
modelValue
|
|
? 'ltr:translate-x-0 rtl:translate-x-[0.75rem]'
|
|
: 'ltr:-translate-x-[0.75rem] rtl:translate-x-0'
|
|
"
|
|
/>
|
|
</button>
|
|
</template>
|