刘光辉
12 小时以前 0dfe84494048ce27ba8449831782128412d3eb13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const inputProps = {
  detailed: { default: false, type: Boolean },
  maskConfig: {
    default: () => ({}),
    type: Object,
  },
  prefixIcon: { default: '', type: String },
  showOverflow: { default: false, type: Boolean },
  showPassword: { default: false, type: Boolean },
  suffixIcon: { default: '', type: String },
  useMask: { default: false, type: Boolean },
  useScan: { default: false, type: Boolean },
  value: String,
};
export const textareaProps = {
  rows: { default: 3 },
  value: String,
};