-
想通过阅读源码学习,遇到一些不懂的问题贴在这里,有人路过的时候瞧一瞧 🤪 |
Beta Was this translation helpful? Give feedback.
Answered by
TinsFox
Sep 17, 2021
Replies: 1 comment
-
在创建组件的属性的时候,会使用 export type ActionSheetAction = {
/** 标题 */
name?: string;
/** 选项文字颜色 */
color?: string;
/** 二级标题 */
subname?: string;
style?: React.CSSProperties;
};
export interface ActionSheetProps extends BaseTypeProps, SharedPopupProps {
visible?: boolean;
/** 面板选项列表 */
actions?: ActionSheetAction[];
/** 顶部标题 */
title?: React.ReactNode;
/** 取消按钮文字 */
cancelText?: React.ReactNode;
/** 选项上方的描述信息 */
/** 点击取消按钮时触发 */
onCancel?: () => void;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
3lang3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
在创建组件的属性的时候,会使用
type
和interface
进行声明,这是为什么呢,一般来说