| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <span
- class="switch"
- :class="{
- 'active': value,
- 'disabled': disabled,
- }"
- @click="handleChange()"
- >
- <span class="switch-core"></span>
- </span>
- </template>
- <script lang="ts" setup>
- const props = withDefaults(defineProps<{
- value: boolean
- disabled?: boolean
- }>(), {
- disabled: false,
- })
- const emit = defineEmits<{
- (event: 'update:value', payload: boolean): void
- }>()
- const handleChange = () => {
- if (props.disabled) return
- emit('update:value', !props.value)
- }
- </script>
- <style lang="scss" scoped>
- .switch {
- height: 20px;
- display: inline-block;
- cursor: pointer;
- &:not(.disabled).active {
- .switch-core {
- border-color: $themeColor;
- background-color: $themeColor;
- &::after {
- left: 100%;
- margin-left: -17px;
- }
- }
- }
- &.disabled {
- cursor: default;
- .switch-core::after {
- background-color: #f5f5f5;
- }
- }
- }
- .switch-core {
- margin: 0;
- display: inline-block;
- position: relative;
- width: 40px;
- height: 20px;
- border: 1px solid #d9d9d9;
- outline: none;
- border-radius: 10px;
- box-sizing: border-box;
- background: #d9d9d9;
- transition: border-color .3s, background-color .3s;
- vertical-align: middle;
- &::after {
- content: '';
- position: absolute;
- top: 1px;
- left: 1px;
- border-radius: 100%;
- transition: all .3s;
- width: 16px;
- height: 16px;
- background-color: #fff;
- }
- }
- </style>
|