reactjs React Material-UI TextInput带有固定文本沿着占位符

rqdpfwrv  于 2023-06-05  发布在  React
关注(0)|答案(1)|浏览(159)

我想实现下面的用户界面的文本输入。它应该有一个固定的文本在年底沿着一个占位符的输入可以给。

注意:固定文本不应是可编辑的。

qaxu7uf2

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>,
    }}
/>

相关问题