我们在OutlinedInput
Material UI 中使用,但没有渲染文本标签。如何解决这个问题?
import { Grid, OutlinedInput } from '@material-ui/core';
<Grid container>
<Grid item xs={12}>
<OutlinedInput
label="invisible label"
placeholder="HELLO, STACKOVERFLOW!"
value={value}
onChange={(e) => handleValueChange(e.target.value)}
fullWidth
/>
</Grid>
</Grid>
而不是预期的“不可见标签”文本,而是呈现一个空白区域(左上角):