更新组件类型
This commit is contained in:
@@ -12,7 +12,7 @@ export type ClCheckboxProps = {
|
||||
pt?: ClCheckboxPassThrough;
|
||||
modelValue?: any[] | boolean;
|
||||
label?: string;
|
||||
value: any;
|
||||
value?: any;
|
||||
disabled?: boolean;
|
||||
activeIcon?: string;
|
||||
inactiveIcon?: string;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user