有一个来自Material-ui文档https://stackblitz.com/edit/mfj4la
的格式化输入示例如何将掩码值[/ \ d /,/ \ d /,/ \ d /,/ \ d /,/ \ d /,/ \ d /,/ \ d /,/ \ d /]传递给来自父组件的TextMaskCustom组件?
答案 0 :(得分:0)
自定义道具可以使用inputProps传递给TextMaskCustom
<FormControl>
<InputLabel>react-text-mask</InputLabel>
<Input
value={textmask}
onChange={this.handleChange('textmask')}
inputComponent={TextMaskCustom}
inputProps={{
mask: [/\d/, /\d/, /\d/, /\d/, /\d/, /\d/, /\d/, /\d/]
}}
/>
</FormControl>