admin管理员组

文章数量:1025217

i'm trying to set a min max for the textfield component but i didn't find a documentation about the slotProps api

<TextField
                    fullWidth
                    label="Discount %"
                    value={amount}
                    type="number"
                    slotProps={{
                      input: {min: 0, max:100 },
                      htmlInput: { min: 0, max: 100},
                    }}
                    
                  />

Note: InputProps got deprecated.

i'm trying to set a min max for the textfield component but i didn't find a documentation about the slotProps api

<TextField
                    fullWidth
                    label="Discount %"
                    value={amount}
                    type="number"
                    slotProps={{
                      input: {min: 0, max:100 },
                      htmlInput: { min: 0, max: 100},
                    }}
                    
                  />

Note: InputProps got deprecated.

本文标签: reactjsset min max in mui textfield typequotnumberquot using the slotprops mui v6Stack Overflow