jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/Tabs/props.d.ts
2024-11-10 15:01:22 +08:00

41 lines
748 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { IBaseProps } from '../_base';
export interface ITabsProps extends IBaseProps {
/**
* @description 类型basic(基础)capsule(胶囊)mixin(混合)
* @default "basic"
*/
type?: 'basic' | 'capsule' | 'mixin';
/**
* @description tabs方向
*/
direction?: 'horizontal' | 'vertical';
/**
* @description tab 切换时的回调
*/
onChange?: (index: number, e: Record<string, any>) => void;
/**
* @description 选项
*/
current: number;
/**
* @description 列表
*/
items: {
title: string;
content: string;
disabled?: boolean;
}[];
/**
* 选项初始值
*/
defaultCurrent?: number;
}
export declare const TabsDefaultProps: Partial<ITabsProps>;