2022-07-15 07:23:55 +00:00
|
|
|
<template>
|
2024-01-11 19:51:35 +00:00
|
|
|
<span :class="checked && 'checked'">
|
2022-07-15 07:23:55 +00:00
|
|
|
<input :checked="checked" type="checkbox" v-bind="$attrs" @input="onInput">
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{ modelValue?: any }>(), {
|
|
|
|
modelValue: false
|
|
|
|
})
|
|
|
|
|
|
|
|
const checked = ref(props.modelValue)
|
|
|
|
|
2022-11-13 15:18:24 +00:00
|
|
|
const emit = defineEmits<{ (e: 'update:modelValue', value: boolean): void }>()
|
2022-07-15 07:23:55 +00:00
|
|
|
|
2022-12-02 16:17:37 +00:00
|
|
|
const onInput = (event: Event) => {
|
2022-07-15 07:23:55 +00:00
|
|
|
checked.value = (event.target as HTMLInputElement).checked
|
|
|
|
emit('update:modelValue', checked.value)
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2024-01-11 22:24:45 +00:00
|
|
|
<style lang="scss" scoped>
|
2022-07-15 07:23:55 +00:00
|
|
|
span {
|
|
|
|
position: relative;
|
2024-01-11 19:51:35 +00:00
|
|
|
vertical-align: bottom;
|
|
|
|
display: inline-block;
|
|
|
|
width: 32px;
|
|
|
|
height: 20px;
|
|
|
|
background: #c2c2c2;
|
|
|
|
border-radius: 99rem;
|
|
|
|
box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, .2);
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
margin-right: .5rem;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
height: 16px;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
position: absolute;
|
|
|
|
background: #fff;
|
|
|
|
top: 2px;
|
|
|
|
left: 2px;
|
|
|
|
border-radius: 99rem;
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.checked {
|
|
|
|
background: var(--color-highlight);
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-07-15 07:23:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
color: var(--color-highlight);
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
2023-08-20 22:35:58 +00:00
|
|
|
left: 1px;
|
2022-07-15 07:23:55 +00:00
|
|
|
}
|
|
|
|
</style>
|