hy-app
Version:
修复上传提示功能
25 lines (22 loc) • 479 B
text/typescript
import type IProps from "./typing";
const defaultProps: IProps = {
show: false,
popupMode: "bottom",
showToolbar: true,
modelValue: "",
title: "",
separator: " ",
loading: false,
itemHeight: 44,
cancelText: "取消",
confirmText: "确认",
cancelColor: "#909193",
confirmColor: "#3c9cff",
visibleItemCount: 5,
closeOnClickOverlay: false,
defaultIndex: [],
hasInput: false,
input: {},
toolbarRightSlot: false,
};
export default defaultProps;