chore(form): 调整size声明

This commit is contained in:
roymondchen 2022-12-09 20:01:05 +08:00
parent 649c80b0ff
commit c3a57a2bea
16 changed files with 29 additions and 20 deletions

View File

@ -31,7 +31,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -26,7 +26,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -1,6 +1,11 @@
<template>
<TMagicCheckboxGroup v-model="model[name]" :size="size" :disabled="disabled" @change="changeHandler">
<TMagicCheckbox v-for="option in options" :label="option.value" :key="option.value" :disabled="option.disabled"
<TMagicCheckbox
v-for="option in options"
:label="option.value"
:value="option.value"
:key="option.value"
:disabled="option.disabled"
>{{ option.text }}
</TMagicCheckbox>
</TMagicCheckboxGroup>
@ -23,7 +28,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -22,7 +22,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -26,7 +26,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -28,7 +28,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -30,7 +30,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -39,7 +39,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -33,7 +33,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -31,7 +31,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change', 'input']);

View File

@ -1,8 +1,12 @@
<template>
<TMagicRadioGroup v-if="model" v-model="model[name]" :size="size" :disabled="disabled" @change="changeHandler">
<TMagicRadio v-for="option in config.options" :label="option.value" :key="`${option.value}`">{{
option.text
}}</TMagicRadio>
<TMagicRadio
v-for="option in config.options"
:label="option.value"
:value="option.value"
:key="`${option.value}`"
>{{ option.text }}</TMagicRadio
>
</TMagicRadioGroup>
</template>
@ -20,7 +24,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -45,7 +45,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -25,7 +25,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);

View File

@ -40,7 +40,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change', 'input']);

View File

@ -28,7 +28,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change', 'input']);

View File

@ -24,7 +24,7 @@ const props = defineProps<{
name: string;
prop: string;
disabled?: boolean;
size: 'mini' | 'small' | 'medium';
size?: 'large' | 'default' | 'small';
}>();
const emit = defineEmits(['change']);