我想实现下面的用户界面的文本输入。它应该有一个固定的文本在年底沿着一个占位符的输入可以给。
注意:固定文本不应是可编辑的。
qaxu7uf21#
关于输入修饰的文档:https://material-ui.com/components/text-fields/#input-adornments
import { TextField, InputAdornment } from "@material-ui/core"; <TextField placeholder="00" InputProps={{ endAdornment: <InputAdornment position="end">km</InputAdornment>, }} />
1条答案
按热度按时间qaxu7uf21#
关于输入修饰的文档:https://material-ui.com/components/text-fields/#input-adornments