ivue-material-plus
Version:
A high quality UI components Library with Vue.js
50 lines (49 loc) • 1.7 kB
TypeScript
export declare const IvueCollapse: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
modelValue: {
type: (StringConstructor | ArrayConstructor)[];
};
simple: {
type: BooleanConstructor;
default: boolean;
};
accordion: {
type: BooleanConstructor;
default: boolean;
};
}, {
data: {
currentValue: string | string[];
childrenList: {
expandable: any[];
pushExpandable: (expandableListItem: import("./types/panel").PanelInstance) => void;
removeExpandable: (expandableListItem: import("./types/panel").PanelInstance) => void;
toggle: (obj: {
name: string;
isActive: boolean;
}) => void;
};
};
classes: import("vue").ComputedRef<(string | {
[x: string]: boolean;
})[]>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("on-change" | "update:modelValue")[], "on-change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: (StringConstructor | ArrayConstructor)[];
};
simple: {
type: BooleanConstructor;
default: boolean;
};
accordion: {
type: BooleanConstructor;
default: boolean;
};
}>> & {
"onOn-change"?: (...args: any[]) => any;
"onUpdate:modelValue"?: (...args: any[]) => any;
}, {
simple: boolean;
accordion: boolean;
}>> & Record<string, any>;
export default IvueCollapse;
export * from './collapse.vue';