更新组件类型

This commit is contained in:
icssoa
2025-10-27 10:00:50 +08:00
parent 8bc903d363
commit 185f5bf708
6 changed files with 18 additions and 33 deletions

View File

@@ -12,7 +12,7 @@ export type ClCheckboxProps = {
pt?: ClCheckboxPassThrough;
modelValue?: any[] | boolean;
label?: string;
value: any;
value?: any;
disabled?: boolean;
activeIcon?: string;
inactiveIcon?: string;

View File

@@ -1,6 +1,4 @@
import type { ClConfirmAction, ClConfirmOptions, ClToastOptions } from "../../types";
import type { UiInstance } from "../../hooks";
export type ClPageUiProps = {
export type ClPageProps = {
className?: string;
backTop?: boolean;
};

View File

@@ -10,11 +10,11 @@ export type ClRadioPassThrough = {
export type ClRadioProps = {
className?: string;
pt?: ClRadioPassThrough;
modelValue: any;
modelValue?: any;
activeIcon?: string;
inactiveIcon?: string;
showIcon?: boolean;
label?: string;
value: any;
value?: any;
disabled?: boolean;
};