2023-05-30 11:49:32 +08:00

46 lines
928 B
Vue

<template>
<component
class="tmagic-design-checkbox"
:is="uiComponent"
v-bind="uiProps"
@update:modelValue="updateModelValue"
@change="changeHandler"
>
<template #default>
<slot></slot>
</template>
</component>
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { getConfig } from './config';
import type { CheckboxProps } from './types';
defineOptions({
name: 'TMCheckbox',
});
const props = withDefaults(defineProps<CheckboxProps>(), {
trueLabel: undefined,
falseLabel: undefined,
});
const ui = getConfig('components')?.checkbox;
const uiComponent = ui?.component || 'el-checkbox';
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);
const changeHandler = (v: any) => {
emit('change', v);
};
const updateModelValue = (v: any) => {
emit('update:modelValue', v);
};
</script>