hfyk-app
Version:
导出问题
17 lines (14 loc) • 318 B
text/typescript
import IProps from "./typing";
import { ColorConfig } from "../../config";
const defaultProps: IProps = {
list: [],
current: 0,
activeColor: ColorConfig.success,
inactiveColor: "#303133",
mode: "button",
fontSize: 12,
bold: true,
bgColor: "#eeeeef",
keyName: "name"
};
export default defaultProps;