【发布时间】:2021-05-04 00:18:50
【问题描述】:
请检查此链接并告诉我应该为此使用哪些道具或事件....
https://codesandbox.io/s/charming-frost-qrvwe?file=/src/App.js
【问题讨论】:
标签: javascript html reactjs dom material-ui
请检查此链接并告诉我应该为此使用哪些道具或事件....
https://codesandbox.io/s/charming-frost-qrvwe?file=/src/App.js
【问题讨论】:
标签: javascript html reactjs dom material-ui
使用inputProps 属性。
<TextField
id="date"
label="Birthday"
type="month"
defaultValue="2017-05"
className={classes.textField}
InputLabelProps={{
shrink: true,
}}
InputProps={{
readOnly: true,
}}
/>
【讨论】: