hfyk-app
Version:
导出问题
31 lines (28 loc) • 606 B
text/typescript
import IProps from "./typing";
const defaultProps: IProps = {
modelValue: "",
disabled: false,
show: false,
popupMode: "bottom",
showToolbar: true,
title: "",
columns: [],
loading: false,
itemHeight: 44,
cancelText: "取消",
confirmText: "确定",
cancelColor: "#909193",
confirmColor: "#3c9cff",
visibleItemCount: 5,
keyName: "text",
closeOnClickOverlay: false,
defaultIndex: [],
immediateChange: true,
zIndex: 10076,
hasInput: false,
placeholder: "请选择",
toolbarRightSlot: false,
shape: "square",
border: "surround"
};
export default defaultProps;