fix(design): 默认props

This commit is contained in:
roymondchen 2023-05-30 11:49:32 +08:00
parent 4314e4adab
commit 05dfd9d936
41 changed files with 47 additions and 47 deletions

View File

@ -42,7 +42,7 @@ const ui = getConfig('components')?.autocomplete;
const uiComponent = ui?.component || 'el-autocomplete';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'select', 'update:modelValue']);

View File

@ -19,5 +19,5 @@ const props = defineProps<BadgeProps>();
const ui = getConfig('components')?.badge;
const uiComponent = ui?.component || 'el-badge';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -22,7 +22,7 @@ const ui = getConfig('components')?.button;
const uiComponent = ui?.component || 'el-button';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['click']);

View File

@ -26,5 +26,5 @@ const ui = getConfig('components')?.card;
const uiComponent = ui?.component || 'el-card';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -25,7 +25,7 @@ const ui = getConfig('components')?.cascader;
const uiComponent = ui?.component || 'el-cascader';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const cascader = ref<any>();

View File

@ -31,7 +31,7 @@ const ui = getConfig('components')?.checkbox;
const uiComponent = ui?.component || 'el-checkbox';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -26,7 +26,7 @@ const ui = getConfig('components')?.checkboxGroup;
const uiComponent = ui?.component || 'el-checkbox-group';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.col;
const uiComponent = ui?.component || 'el-col';
const uiProps = computed(() => ui?.props(props));
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -26,7 +26,7 @@ const ui = getConfig('components')?.collapse;
const uiComponent = ui?.component || 'el-collapse';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -32,7 +32,7 @@ const ui = getConfig('components')?.collapseItem;
const uiComponent = ui?.component || 'el-collapse-item';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -28,7 +28,7 @@ const ui = getConfig('components')?.colorPicker;
const uiComponent = ui?.component || 'el-color-picker';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -27,7 +27,7 @@ const ui = getConfig('components')?.datePicker;
const uiComponent = ui?.component || 'el-date-picker';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -26,13 +26,13 @@ defineOptions({
const props = defineProps<DialogProps>();
const emit = defineEmits(['close', 'update:modelValue']);
const ui = getConfig('components')?.dialog;
const uiComponent = ui?.component || 'el-dialog';
const uiProps = computed(() => ui?.props(props) || {});
const emit = defineEmits(['close', 'update:modelValue']);
const uiProps = computed(() => ui?.props(props) || props);
const closeHandler = (...args: any[]) => {
emit('close', ...args);

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.divider;
const uiComponent = ui?.component || 'el-divider';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -39,7 +39,7 @@ const ui = getConfig('components')?.drawer;
const uiComponent = ui?.component || 'el-drawer';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const openHandler = (...args: any[]) => {
emit('open', ...args);

View File

@ -24,7 +24,7 @@ const ui = getConfig('components')?.dropdown;
const uiComponent = ui?.component || 'el-dropdown';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['command']);

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.dropdownItem;
const uiComponent = ui?.component || 'el-dropdown-item';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -20,7 +20,7 @@ const ui = getConfig('components')?.form;
const uiComponent = ui?.component || 'el-form';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const form = ref<any>();

View File

@ -23,5 +23,5 @@ const ui = getConfig('components')?.formItem;
const uiComponent = ui?.component || 'el-form-item';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -38,7 +38,7 @@ const ui = getConfig('components')?.input;
const uiComponent = ui?.component || 'el-input';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'input', 'update:modelValue']);

View File

@ -25,7 +25,7 @@ const ui = getConfig('components')?.inputNumber;
const uiComponent = ui?.component || 'el-input-number';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'input', 'update:modelValue']);

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.option;
const uiComponent = ui?.component || 'el-option';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -20,7 +20,7 @@ const ui = getConfig('components')?.optionGroup;
const uiComponent = ui?.component || 'el-option-group';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const optionGroup = ref<any>();
</script>

View File

@ -21,13 +21,13 @@ defineOptions({
const props = defineProps<PaginationProps>();
const emit = defineEmits(['size-change', 'current-change']);
const ui = getConfig('components')?.pagination;
const uiComponent = ui?.component || 'el-pagination';
const uiProps = computed(() => ui?.props(props) || {});
const emit = defineEmits(['size-change', 'current-change']);
const uiProps = computed(() => ui?.props(props) || props);
const handleSizeChange = (...args: any[]) => {
emit('size-change', ...args);

View File

@ -24,5 +24,5 @@ const ui = getConfig('components')?.popover;
const uiComponent = ui?.component || 'el-popover';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.radio;
const uiComponent = ui?.component || 'el-radio';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.radioButton;
const uiComponent = ui?.component || 'el-radio-button';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -26,7 +26,7 @@ const ui = getConfig('components')?.radioGroup;
const uiComponent = ui?.component || 'el-radio-group';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -25,13 +25,13 @@ defineOptions({
const props = defineProps<SelectProps>();
const emit = defineEmits(['change', 'update:modelValue', 'visibleHandler']);
const ui = getConfig('components')?.select;
const uiComponent = ui?.component || 'el-select';
const uiProps = computed(() => ui?.props(props) || {});
const emit = defineEmits(['change', 'update:modelValue', 'visibleHandler']);
const uiProps = computed(() => ui?.props(props) || props);
const select = ref<any>();

View File

@ -26,5 +26,5 @@ const ui = getConfig('components')?.step;
const uiComponent = ui?.component || 'el-step';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.steps;
const uiComponent = ui?.component || 'el-steps';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -28,7 +28,7 @@ const ui = getConfig('components')?.switch;
const uiComponent = ui?.component || 'el-switch';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -26,5 +26,5 @@ const ui = getConfig('components')?.tabPane;
const uiComponent = ui?.component || 'el-tab-pane';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -31,7 +31,7 @@ const ui = getConfig('components')?.table;
const uiComponent = ui?.component || 'el-table';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['select', 'sort-change', 'expand-change', 'cell-click']);

View File

@ -23,5 +23,5 @@ const ui = getConfig('components')?.tableColumn;
const uiComponent = ui?.component || 'el-table-column';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -30,7 +30,7 @@ const ui = getConfig('components')?.tabs;
const uiComponent = ui?.component || 'el-tabs';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['tab-click', 'tab-add', 'tab-remove', 'update:model-value']);

View File

@ -20,5 +20,5 @@ const ui = getConfig('components')?.tag;
const uiComponent = ui?.component || 'el-tag';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -25,7 +25,7 @@ const ui = getConfig('components')?.timePicker;
const uiComponent = ui?.component || 'el-time-picker';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'update:modelValue']);

View File

@ -23,5 +23,5 @@ const ui = getConfig('components')?.tooltip;
const uiComponent = ui?.component || 'el-tooltip';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
</script>

View File

@ -35,7 +35,7 @@ const ui = getConfig('components')?.tree;
const uiComponent = ui?.component || 'el-tree';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits([
'node-click',

View File

@ -29,7 +29,7 @@ const ui = getConfig('components')?.upload;
const uiComponent = ui?.component || 'el-upload';
const uiProps = computed(() => ui?.props(props) || {});
const uiProps = computed(() => ui?.props(props) || props);
const upload = ref<any>();